Recent Posts
Sql Server 2005 Tips and Tricks
Return To Blog Listing
Get some unique tips tricks and articles on SQL Server 2005. The blogs also cover Sql Server Reporting Services along with SQL Server Administration
Recent Posts Tagged With 'views'
Find out all the views in a database using SQL Server 2005
In order to find out all the views in a database, use this query :USE AdventureWorksGOSELECT [name] AS ViewName,create_date as CreationDate,modify_date as ModificationDateFROM sys.viewsORDER BY ViewNameGOYou can also get various other info like Schem...
