Viewing 3 posts - 16 through 19 (of 19 total)
not knowing all whats happening with your tables it hard to give a good answer but....
first off...
if your changing data that points to another table (foreign key FK) you have...
July 31, 2006 at 5:43 am
#652312
i would think a table logging would be the best approach as the Global Variable within the DTS Package is unique to the instance of the package
you could also have...
July 31, 2006 at 5:33 am
#652311
example of how doing this within tsql:
CREATE TABLE #Temp1 (
Field1IntNULL,
Field2 VarChar(64)NULL)
BULK INSERT #Temp1
FROM '\\server\share\folder\filename1.csv'
WITH
(
...
July 31, 2006 at 5:29 am
#652310