Apr 15, 2003 #1 nowayout Programmer Feb 25, 2003 364 US Hi all, How can i combine the database? can i use DTS to import / export the data in to one database? or i have to write script for that? help please and any goor resource book for that thanks
Hi all, How can i combine the database? can i use DTS to import / export the data in to one database? or i have to write script for that? help please and any goor resource book for that thanks
Apr 15, 2003 #2 Kapgemini Technical User Apr 15, 2003 2 IN Hi .. If the table structure is same yo u can also use insert into select * from format. The usage is that you can create the dynamic query and then run them at one go so that it would be easier select "insert into " + name form sysobjects where type ='U' tyeps U can as well use DTS Upvote 0 Downvote
Hi .. If the table structure is same yo u can also use insert into select * from format. The usage is that you can create the dynamic query and then run them at one go so that it would be easier select "insert into " + name form sysobjects where type ='U' tyeps U can as well use DTS