SQL Server new query window shortcut

Read More »
SQL Server error message 3159
One of my friends working on SQL Server 2000 to 2005 faced following issue. Msg 3159, Level 16, State 1, Line 1 The tail of the log for the database “databasename” …Read More »
SQL function to get weekday - weekly calendar

Read More »
Insert multiple rows using single Insert statement in SQL Server
This is a very basic problem sometimes newbies struggle with. I have seen developers writing 10 different insert statements to insert 10 rows in a table. This can be simplified in …Read More »
Constraint to limit VARCHAR max character length in SQL Server
A business need may arise to limit a VARCHAR column to a certain length. Consider a scenario where in an application has a 10000 character limit for a column. The VARCHAR(max) …Read More »
SQL Server unattended installation 2014

Read More »
Primary Key and Unique Key difference in SQL Server

Read More »
Locking hints SQL Server
Locking hints are used with SELECT/INSERTS/UPDATE/DELETE statements to enforce or change the default locking behavior. Given below are some of the locking hints available in SQL Server ROWLOCK The ROWLOCK hint …Read More »
Difference between UNION and UNION ALL in SQL Server

Read More »
Detach or take offline in SQL Server

Read More »
Copy Column Headers in SQL Server

Read More »
SQL Server Replication Terminology
SQL Server Replication is a way to automate data distribution from a source to one or more destination database. SQL Server replication follows the Magazine Publishing terminology. A publisher (source instance) …Read More »
SQL Server indexed view limitations
A SQL Server View is logical database object made up of a SQL Statement. It can also be called a virtual table made up of a SQL statement which may have …Read More »
SQL Server Error Message 1101 - Insufficient Disk Space
The SQL Server Error Message 1101 occurs when a database runs out of space. The error message is given below. ERROR 1101: Could not allocate a new page for database because …Read More »
Disable and Enable triggers in SQL Server

Read More »
SET vs SELECT in SQL Server

Read More »
SET ROWCOUNT in SQL Server

Read More »
Find nth max value in SQL Server

Read More »
Enable CLR in SQL Server

Read More »
Case sensitive search in SQL Server

Read More »
One Comment on “SQL Server Accidental DBA”