T-Sql Problem

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...



Answer this question

T-Sql Problem

  • rash

    add the server as a linked server, then . . .

    insert into ThisServer.ThisDB.ThisOwner.ThisTable select * from ThatServer.ThatDB.ThatOwner.ThatTable



  • T-Sql Problem