SQL
MS SQL and .net Development
Pages
(Move to ...)
Home
▼
Monday, November 2, 2015
List database objects modified in the last ‘X’ days
›
Use below query to get the list of databases modified in last 'X' days: USE <database_Name>; GO SELECT Name AS object_N...
Monday, September 14, 2015
Weekend count between two dates
›
Use below query to find the weekend count between two dates: DECLARE @DateFrom DateTime, @DateTo DateTime, @Total int, @Number int, @Coun...
Monday, August 24, 2015
Find LOB Columns Script
›
Sometime you want to identify the tables which could not reindex online. For this you had to scan all tables in SQL Server database and li...
Monday, August 17, 2015
Unable to modify table.
›
I was trying to modify a table of approx 5 million records setting a field on the table to not allow null values. However, while saving cha...
Monday, July 20, 2015
Record Retrieval Error Connection Read
›
You may receive below error while running third party application with backend SQL Server. Record Retrieval Error Error: (Connection Read...
‹
›
Home
View web version