I would like to call tables from a different server. However, there is a problem since the server name appears in the following format:
10.52.49.22/Name
Now if I do something like this, I get the error, "
The object name contains more than the maximum number of prefixes
SELECT t1.[UserId]
FROM [10.52.49.22].Name.[TargetDatabase].[dbo].[TableOne] t1
JOIN [10.52.49.22].Name.[TargetDatabase].[dbo].[TableTwo] t2
on t1.UserId = t2.UserId
How to use this server name correctly against the syntax specified in the following answer?