SQL

MS SQL and .net Development

Pages

▼
Monday, October 27, 2014

Find outdated statistics in SQL Server

›
SQL server uses the  STATISTICS  to find the appropriate Query plan. if you are experiencing performance issues for your queries than it...
Monday, October 20, 2014

Query to find out parameters for Stored Procedure

›
Use below query to find out parameters for Stored Procedure SELECT Schema_Name(Schema_ID) AS Schema_Name,  O.Type_Desc,  O.Name AS Obje...
Monday, October 13, 2014

Selecting a random number for each row

›
Sometime you may want to return a random number for each row. You can not do this directly selecting a RAND() function in query: SELECT R...
Monday, September 29, 2014

Number of words in a string

›
In SQL Server there is not direct function to calculate the number of words in a string.  But we can calculate the number of words in foll...
Monday, September 22, 2014

Query to find the Index with size

›
Use below query to find the Index with size in a table: SELECT OBJECT_Name(I.OBJECT_ID) AS TableName, I.index_ID AS IndexID, I.Name...
‹
›
Home
View web version

Developer

Unknown
View my complete profile
Powered by Blogger.