December 16, 2010 at 11:13 pm
hi,
can any one tell how to transfer data from a table in one database to another table in another database.....if any one knows....please write sample query for me.....
December 16, 2010 at 11:16 pm
removed
-------Bhuvnesh----------
I work only to learn Sql Server...though my company pays me for getting their stuff done;-)
December 16, 2010 at 11:19 pm
gupta.sreekanth (12/16/2010)
hi,can any one tell how to transfer data from a table in one database to another table in another database.....if any one knows....please write sample query for me.....
use SSIS package
or
Insert INTO DestinationDB..tblETC Select * from SourceDB..TblETC
-------Bhuvnesh----------
I work only to learn Sql Server...though my company pays me for getting their stuff done;-)
December 17, 2010 at 2:31 am
Adding few more....
If the two databases are in different servers, use linked server.
Import/Export Wizard is another option.
December 17, 2010 at 4:51 am
Easiest way is to simply write insert into table1 on target database select data from table1 on source database
Better would be use of SSIS packet
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply