At long last I've gotten my IT department to set up a link to a remote server. Sure would be nice to be able to view the list of tables on the remote server! The only way I've found to do this so far is by using a system stored procedure:
How can I set up a VIEW to return this same information?
sp_tables_ex
@table_server = 'DTMFLKSVDB03',
@table_catalog='FnetIntranet',
@table_schema='dbo'
How can I set up a VIEW to return this same information?