I can list all views in SQL Server 2008 by using 'SELECT * FROM sys.views'
What I want to do is list only the views that are schema bound. How can I do this?
I can list all views in SQL Server 2008 by using 'SELECT * FROM sys.views'
What I want to do is list only the views that are schema bound. How can I do this?
SELECT * FROM sys.views WHERE OBJECTPROPERTY(object_id, 'IsSchemaBound')=1