SQL
MS SQL and .net Development
Pages
(Move to ...)
Home
▼
Monday, January 11, 2016
Error: 64, connection was successfully established with the server, but then an error occurred during the pre-login handshake.
›
I had got below error in my friend's system: A connection was successfully established with the server, but then an error occurred du...
15 comments:
Monday, January 4, 2016
Error occurred during database creation
›
Sometime when you create a new database by using CREATE Database statement in SSMS (SQL Server Management Studio), you may got below error ...
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...
‹
›
Home
View web version