vote up 3 vote down star

Let's say I have the following simple table variable:

declare @databases table
(
    DatabaseID    int,
    Name        varchar(15),   
    Server      varchar(15)
)
-- insert a bunch rows into @databases

Is declaring and using a cursor my only option if I wanted to iterate through the rows? Is there another way?

flag

69% accept rate
Could you provide us the reason why you want to iterate over the rows, other solution that don't require iteration might exists (and which are faster by a large margin in most cases) – Pop Catalin Sep 15 '08 at 11:21
agree with pop... may not need a cursor depending on the situation. but theres no problem with using cursors if you need to – Shawn Simon Oct 29 '08 at 23:09

9 Answers

vote up 0 vote down

Although I'm not sure the problem you see with the above approach; See if this helps.. http://www.databasejournal.com/features/mssql/article.php/3111031

link|flag
vote up 0 vote down

You can use a while loop:

While (Select Count(*) From #TempTable) > 0
Begin
    Insert Into @Databases...

    Delete From #TempTable Where x = x
End
link|flag
vote up 2 vote down

First of all you should be absolutely sure you need to iterate through each row - set based operations will perform faster in every case I can think of and will normally use simpler code.

Depending on your data it may be possible to loop just using select statements as shown below:

Declare @Id int

While (Select Count(*) From ATable Where Processed = 0) > 0
Begin
    Select Top 1 @Id = Id From ATable

    --Do some processing here

    Update ATable Set Processed = 1 Where Id = @Id 

End

Another alternative is to use a temporary table:

Select *
Into   #Temp
From   ATable

Declare @Id int

While (Select Count(*) From #Temp) > 0
Begin

    Select Top 1 @Id = Id From #Temp

    --Do some processing here

    Delete #Temp Where Id = @Id

End

The option you should choose really depends on the structure and volume of your data.

link|flag
vote up 3 vote down

Here is how I would do it:

Select Identity(int, 1,1) AS PK, DatabaseID
Into   #T
From   @databases

Declare @maxPK int;Select @maxPK = MAX(PK) From #T
Declare @pk int;Set @pk = 1

While @pk <= @maxPK
Begin

    -- Get one record
    Select DatabaseID, Name, Server
    From @databases
    Where DatabaseID = (Select DatabaseID From #T Where PK = @pk)

    --Do some processing here
    -- 

    Select @pk = @pk + 1
End
link|flag
so basically youre doing a cursor, but without all of the benefits of a cursor – Shawn Simon Oct 6 '08 at 14:27
... without locking the tables that are used while processing... as this is one of the benefits of a cursor :) – leoinfo Oct 8 '08 at 16:49
vote up 0 vote down

I agree with the previous post that set-based operations will typically perform better, but if you do need to iterate over the rows here's the approach I would take:

  1. Add a new field to your table variable (Data Type Bit, default 0)
  2. Insert your data
  3. Select the Top 1 Row where fUsed = 0 (Note: fUsed is the name of the field in step 1)
  4. Perform whatever processing you need to do
  5. Update the record in your table variable by setting fUsed = 1 for the record
  6. Select the next unused record from the table and repeat the process

    declare @databases table
    (
    DatabaseID int,
    Name varchar(15),
    Server varchar(15),
    fUsed BIT DEFAULT 0
    )

    -- insert a bunch rows into @databases

    DECLARE @DBID INT

    SELECT TOP 1 @DBID = DatabaseID from @databases where fUsed = 0

    WHILE @@ROWCOUNT <> 0 and @DBID IS NOT NULL
    BEGIN
    -- Perform your processing here

    --Update the record to "used"

    UPDATE @databases SET fUsed = 1 WHERE DatabaseID = @DBID

    --Get the next record
    SELECT TOP 1 @DBID = DatabaseID from @databases where fUsed = 0
    END

link|flag
vote up 0 vote down

Just a quick note, if you are using SQL Server, the examples that have:

While (Select Count(*) From #Temp) > 0

Would be better served with

While EXISTS(SELECT * From #Temp)

The Count will have to touch every single row in the table, the EXISTS only needs to touch the first one.

link|flag
vote up 0 vote down

If you have no choice than to go row by row creating a FAST_FORWARD cursor. It will be as fast as building up a while loop and much easier to maintain over the long haul.

FAST_FORWARD Specifies a FORWARD_ONLY, READ_ONLY cursor with performance optimizations enabled. FAST_FORWARD cannot be specified if SCROLL or FOR_UPDATE is also specified.

link|flag
vote up 0 vote down

Define your temp table like this -

declare @databases table
(
    RowID not null int identity(1,1) primary key,
    DatabaseID    int,
    Name        varchar(15),   
    Server      varchar(15)
)

-- insert a bunch rows into @databases

Then do this -

declare @i int
select @i = min(RowID) from @databases
declare @max int
select @max = max(RowID) from @databases

while @i <= @max begin
    select DatabaseID, Name, Server from @database where RowID = @i --do some stuff
    set @i = @i + 1
end
link|flag
vote up 0 vote down

I really do not see the point why you would need to resort to using dreaded cursor. But here is another option if you are using SQL Server version 2005/2008
Use Recursion

declare @databases table
(
	DatabaseID    int,
	Name        varchar(15),   
	Server      varchar(15)
)

--; Insert records into @databases...

--; Recurse through @databases
;with DBs as (
	select * from @databases where DatabaseID = 1
	union all
	select A.* from @databases A 
		inner join DBs B on A.DatabaseID = B.DatabaseID + 1
)
select * from DBs
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.