I have 2 servers named .05 and .06 . In both servers I have DB name Media but unfortunately I truncated a table name Media.Texas table in .05 server. But know I need to copy the same data from .06 to Media.Texas table in .05. I have done from one DB to Another DB but I never done between servers
What is the better way to code it to bring back the original Data from the other server.
insert into server2.database1.dbo.table1(
select * from server1.database1.dbo.table1)