How to find which views are using a certain table in SQL Server (2008)?

后端 未结 7 1120
孤街浪徒
孤街浪徒 2021-01-31 13:30

I have to add a few columns to a table and I also need to add these columns to all the views that use this table.

Is it possible to get a list of all the views in a data

7条回答
  •  忘了有多久
    2021-01-31 14:06

    SELECT VIEW_NAME
    FROM INFORMATION_SCHEMA.VIEW_TABLE_USAGE
    WHERE TABLE_NAME = 'Your Table'
    

提交回复
热议问题