Hi,
I am trying to write a script that will update my existing table without producing an output table. I have the following code which doesn't seem to work:
Data Table("Crea Table") << Update from Database(
"DRIVER=SQL Server Native Client 11.0;SERVER=REMOVED FOR SECURITY;",
"EXECUTE Crea_Table"
,Merge Same Name Columns,
By matching Columns(:Lot_Day=:Lot_Day,:Lot ID=:Lot ID),
Drop Multiples(1,0),Name("Include non-matches")(1,0),
Preserve Main Table Order(1),
//No Output
)
Can someone help me out?
Thanks