SQL
MS SQL and .net Development
Pages
(Move to ...)
Home
▼
Tuesday, January 27, 2015
Unused Index
›
Here is a useful script to get the unused index in a Database. This may be inaccurate sometime. So you had to apply commonsense before runn...
Monday, January 12, 2015
SQL Agent DCOM error Event ID 10016
›
I got this error in my event log ID 10016 of my database server installed with Windows Server 2012, in which i have only installed SQL ser...
12 comments:
Monday, January 5, 2015
Refresh Intellisense in SSMS(SQL Server Management Studio) 2008 & above
›
Intellisense is a new feature that comes with SSMS(SQL Server Management Studio) 2008 onwards. Intellisense makes coding quite easy. Some...
Monday, December 29, 2014
Tables ordered by Size
›
Use below query to find the tables in a database based on Size SELECT O.Name AS [Table], SUM(A.Total_Pages) AS [Reserved Pages],...
Monday, December 15, 2014
Convert Seconds to HH:MM:SS
›
Use below function to convert Seconds to HH:MM:SS Create Function dbo.GetHHMMSS(@InputSecs BIGINT) RETURNS nVarChar(Max) Begin Declare...
‹
›
Home
View web version