BigKahunna
Programmer
I am trying to copy data from one database to another using a DTS package I created. All the steps in the package work until it gets to the final stage and runs the Copy SQL Server Objects module to copy data from one database to a new structure in another The problem that I am having is that both the databases in question have a handful of tables that do not exists in the other. I can get round this when using the DTS wizard as the copy tables option has some inteligence build in, in that if a table doesn't exist in the destination it creates it and then copies the data. However the Copy SQL Objects stage either throws up an error that the destination object doesn't exists (When just copying data) or throw up an error that the table already exists (when copying tables+data). I've tried the drop tables option and this doesn't seem to work either. I don't want to have to keep altering the package if possible as I want to leave it set up on clients servers. Bit of a long winded question, but I hope someone can help!