I was able to create an alias for a linked server using this method. While linking the server I specified default catalog so now I can execute remote SP by skipping schema and Database name e.g. this works:
EXEC REMOTE_SERVER_ALIAS...REMOTE_STORED_PROCEDURE
But for some reason I cannot use the same approach for simple select:
SELECT * FROM REMOTE_SERVER_ALIAS...REMOTE_TABLE
Attempting to execute this throws error:
An invalid schema or catalog was specified
Any idea how to make it work?
P.S. I am aware about OPENQUERY
approach, but rather not use it due to its limitations