RSS Links

 

Here are all of the RSS links for sections of this site

VB.NET/ASP.NET
 Java
 Unix/Linux
 Windows
 SQL Server

Home arrow SQL Server arrow How to get a list of views in sql server
How to get a list of views in sql server PDF Print E-mail
Thursday, 28 January 2010
To get a list of views you can use the following query

Select * from sysobjects where type = 'V' and category = 0
 
< Prev   Next >
 
Designed by Graham Robinson Software