Can anyone share the way how to find the column dependencies on linked servers?
For example: I have a stored proc with the definition
select column1, column2 from linkedserver.db.schema.table
sys.dm_sql_referenced_entities
gives me the servername, dbname, schemaname, tablename but I have to know the column names as well, like the columns I have this in definition, like column1, column2.
I want to know cross server column dependencies.
No luck with: Getting SQL Server Cross database Dependencies