May 2, 2009 #1 madeline1 Programmer Joined Jun 13, 2007 Messages 8 Location US What is the syntax to list the name of all views in SQL Server?
May 3, 2009 #2 tsuji Technical User Joined Jul 25, 2001 Messages 10,675 Location 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]