cancel
Showing results for 
Search instead for 
Did you mean: 

How to find proxy table Configuration

0 Kudos
1,936

I have created a proxy table in my local DB as shown below. Using SQL Query I want to find to which Remote DB this Proxy Table PT is configured? I couldn't find this in sysobject table.

CREATE PROXY_TABLE PT AT 'REMOTE_SERVER.DB_NAME.dbo.TABLE_NAME'
View Entire Topic
former_member89972
Active Contributor

Run in the database where proxy tables are created

exec sp_helpobjectdef for all proxy tables in a database

exec sp_helpobjectdef <tableName> for specific a table in a database

HTH

Avinash