Hi there, can someone please help me on how will I transfer a record from a table in one database server to another database server with a different table name
Thanks in advance...
Hi there, can someone please help me on how will I transfer a record from a table in one database server to another database server with a different table name
Thanks in advance...
T-Sql Problem
rash
add the server as a linked server, then . . .
insert into ThisServer.ThisDB.ThisOwner.ThisTable select * from ThatServer.ThatDB.ThatOwner.ThatTable