Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
My current process is below
tSyBaseInput -----> tConvertType ------> tMSSqlOutput
Currently my data is loading from one database to another, with a tconverttype inbetween.
The action on the output table is Truncate Table, and Insert Data.
I am trying to meet the additional criteria;
1. If Table(output) exists then truncate and insert (Currently working)
2. If Table(output) does not exist then Create Table and Insert
And lastly, if there schema for table(output) is different from the tConvert - Drop and Create Table and Insert.
Can anyone point me in the right direction for this?
Thanks.