Question

I have linked two SQL Servers and am trying to insert from one into the other.

The issue is that the server I am inserting into is actually an instance (COMPANY\INSTANCE).

When I run my code, how do I reference a table in the linked server? I have tried Company\instance.dbo.table but am getting a syntax error because of the backslash.

Was it helpful?

Solution

Use [Company\instance].dbo.table

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top