Feeds:
Posts
Comments

Archive for the ‘SQL Cursor’ Category

I just wrote down following script very quickly for one of the project which I am working on. The requirement of the project was that every index existed in database should be rebuilt with fillfactor of  80. One common question I receive why fillfactor 80, answer is I just think having it 80 will do [...]

Read Full Post »

SQLAuthority Blog reader YordanGeorgiev has submitted very interesting SP, which uses cursor to generate text of all the Stored Procedure of current Database. This task can be done many ways, however, this is also interesting method. USE AdventureWorks GO DECLARE @procName VARCHAR(100) DECLARE @getprocName CURSOR SET @getprocName = CURSOR FOR SELECT s.name FROM sysobjects s WHERE type = [...]

Read Full Post »

SQL SERVER – Guidelines and Coding Standards complete List Download Coding standards and guidelines are very important for any developer on the path of successful career. A coding standard is a set of guidelines, rules and regulations on how to write code. Coding standards should be flexible enough or should take care of the situation [...]

Read Full Post »

SQL Server Interview Questions and Answers Print Book Available (207 Pages) | Sample Chapters Download SQL Server 2008 Interview Questions and Answers Complete List UPDATE: This article series has been updated with new interview questions and answers series. Interview is very important event for any person. A good interview leads to good career if candidate [...]

Read Full Post »

SQL Server Interview Questions and Answers Print Book Available (207 Pages) | Sample Chapters SQL SERVER – 2008 – Interview Questions and Answers Complete List Download 1) General Questions of SQL SERVER What is Cursor? Cursor is a database object used by applications to manipulate data in a set on a row-by-row basis, instead of [...]

Read Full Post »

Older Posts »

Follow

Get every new post delivered to your Inbox.

Join 15,916 other followers