Category Archives: SQL Development

SQL Script to Split a String

SQL Script to Split a String I wondered to see the shortest way to split a string using T-SQL code. Usually we need to use a user defined function to split string but we can use one of the T-SQL … Continue reading

Posted in SQL Development, SQL Scripts | Tagged , , , , , , , , , | Leave a comment

Dynamic Management Views in Sql Server

Dynamic Management Views in Sql Server Introduction: The dynamic management views (DMVs) in SQL Server 2005 are designed to give you a window into what’s going on inside SQL Server. They can provide information on what’s currently happening inside the … Continue reading

Posted in SQL Development, SQL Server DBA | Tagged , , , , , , , | Leave a comment

SQL Server Isolation Levels and Locks

SQL Server Isolation Levels and Locks We will learn about SQL Server Isolation Levels and Locks. Isolation levels come into play when you need to isolate a resource for a transaction and protect that resource from other transactions. The protection … Continue reading

Posted in SQL Development, SQL Server DBA | Tagged , , , , | Leave a comment