D
Doug Swanson
I'm trying to execute multiple UPDATE statements from my DTS Package via an
ODBC connection to my access database. What I'm trying to avoid is having
multiple Execute SQL Task objects. Here is the sql I'm trying to run...
UPDATE imcoil_inventory set imcoil_inventory.process_ind = 'P'
WHERE imcoil_inventory.process_ind = 'Y'
UPDATE rmcoil_inventory set rmcoil_inventory.process_ind = 'P'
WHERE rmcoil_inventory.process_ind = 'Y'
UPDATE fgspec_inventory set fgspec_inventory.process_ind = 'P'
WHERE fgspec_inventory.process_ind = 'Y'
I've tried putting 'GO' after every update statment but I still can't get it
to work...any ideas?
thanks
Doug
ODBC connection to my access database. What I'm trying to avoid is having
multiple Execute SQL Task objects. Here is the sql I'm trying to run...
UPDATE imcoil_inventory set imcoil_inventory.process_ind = 'P'
WHERE imcoil_inventory.process_ind = 'Y'
UPDATE rmcoil_inventory set rmcoil_inventory.process_ind = 'P'
WHERE rmcoil_inventory.process_ind = 'Y'
UPDATE fgspec_inventory set fgspec_inventory.process_ind = 'P'
WHERE fgspec_inventory.process_ind = 'Y'
I've tried putting 'GO' after every update statment but I still can't get it
to work...any ideas?
thanks
Doug