INSERT INTO from two different server database
It sounds like you might need to create and query linked database servers in SQL Server At the moment you’ve created a query that’s going between different databases using a 3 part name mydatabase.dbo.mytable but you need to go up a level and use a 4 part name myserver.mydatabase.dbo.mytable, see this post on four part … Read more