- I am importing a file with 200+ records into a master table.
- The BizTalk package only services one source, other packages service other sources
- I am using strongly type stored procedures for all SQL CRUD
- All records inside the file come from the same source
- The file does not contain source name or source Id
- I want to determine source from package hard coded value
- The Master table contains records from several sources
- Before import: delete inside Master table existing records from source
Unlike the file import, the delete statement happens once
DELETE FROM Master WHERE SourceID = @SourceID
The file import works, but how can I hard code the delete source ID?