May 2, 2009 #1 madeline1 Programmer Jun 13, 2007 8 US What is the syntax to list the name of all views in SQL Server?
May 3, 2009 #2 tsuji Technical User Jul 25, 2001 10,675 US Here table_name's are the views, table_schema's are the db's. [tt] SELECT table_name, table_schema FROM information_schema.views;[/tt] Upvote 0 Downvote
Here table_name's are the views, table_schema's are the db's. [tt] SELECT table_name, table_schema FROM information_schema.views;[/tt]