Tag Archives: SQL Scripts

How to generate script for multiple objects in a database – SQL Server

Generating script for Stored procedures and views in SQL Server 2012 Today I have got a question from one of the beginner DBA. He was actually asked to get “CREATE SCRIPT” for 35 stored procedures and 15 views from one … Continue reading

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

Difference between NEWID() and NEWSEQUENTIALID() in SQL Server

Difference between NEWID() and NEWSEQUENTIALID() in SQL Server Both NEWID() and NEWSEQUENTIALID() are used to generate GUID of data type UNIQUEIDENTIFIER in SQL Server. The Basic difference between them is NEWID() generates GUID’s in random order whereas NEWSEQUENTIALID()  generates GUID’s … Continue reading

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

Difference between CHARINDEX and PATINDEX

Difference between CHARINDEX and PATINDEX CHARINDEX: It is a string function which returns the starting position of a pattern. PATINDEX: It is a string function which returns the starting position of a pattern. We can also use wildcard characters in … Continue reading

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