Trent,
There are no such autogenerated sprocs in the list of stored procedures in the DDT. The only autogenerated sprocs that I can see are the SFS sprocs. Perhaps I may sound a bit annoying, but I assure you this is not my intention. It is perhaps of my not so good English. I try to do my job, as you do, and I get into these problems, and you are the only ones I can ask. Please tell me if I overdo it. I don't have any reason of lying to you.
As for the stored procedures, here's a list of the stored procedures in my database after deploying the package.
You can see those *Ignore sprocs. Here's the contents of one of them.
ALTER PROCEDURE [dbo].[AreasInsertIgnore] @Area as
NVarChar(100) AS
IF NOT EXISTS(SELECT Area FROM Areas WHERE Area = @Area) BEGIN
INSERT INTO Areas (Area) VALUES (@Area) END
I have tryed to autogenerate sprocs for tables, and they all end up with _Insert, _Update, _Delete. Also they do not contain the EXISTS check as the one above. Here are the properties of the Areas table:
I don't know if the image is clear enough, but then again, I can tell when a checkbox is checked. The settings are the same for all those ten tables. I don't use autogenerated sprocs, I write my own sprocs.
The only thing I can tell you about those *Ignore sprocs is that all of those tables they refere to have a data deployment package. Perhaps you use them to populate those tables with data.
As I told you, they don't cause me any trouble, I just thought you might want to know. I have no intention of getting on your nerves, and I am sorry if I ever did that.