SQL Server tips and tricks

Posted by Bijay Kumar on November 30, 2011

Here are some sql server tips and tricks.
To get all the Tables Information in SQL Server

SELECT * from SYS.Tables
To get all the views information in SQL Server

Select * from sys.views  OR
To get only view names

Select Name from sys.views
To get all stored procedure names
SELECT NAME from
... [read more]

Rating

not rated

Reviews

There are currently no comments or reviews.

Submit a review:

Login required.