What is the fastest way to loop thru a Query in T-SQL . 1) Cursors or 2) Temp tables with Key added or any thing else.
|
|
|||||||||||
|
|
|
I don't think you need a cursor for that (your comment about concat) if I understand what you're going for. Here's one of mine that grabs all the phone numbers for a contact and plops them in a field and returns it.
|
||||||||||
|
|
|
The fastest way to "loop" thru a query is to just not do it. In SQL, you should be thinking set-based instead of loop-based. You should probably evaluate your query, ask why you need to loop, and look for ways to do it as a set. With that said, using the FAST_FORWARD option on your cursors will help speed things along. |
||
|
|
|
|
For your stated goal, something like this is actually a better bet - avoids the "looping" issue entirely.
|
||
|
|
|
Depends on what you're trying to do. Some tasks are better suited for cursors, some for temp tables. That's why they both exist. |
||
|
|
Cursors are usually resource hogs especially as your table size grows. So if your table size is small I would be okay with recommending a cursor, however, a larger table would probably do better with an external or temporary table. |
||
|
|
|
|
Do you want to loop through query output inside stored procedure OR from C# code? Generally speaking, you should avoid looping through query output one row at a time. SQL is meant for set based operations so see if you can solve your problem using set based approach. |
||
|
|
|
|
Depending on the size of your result set - Table variables are in memory and require no disk read, can be treated just like a table (set operations) and are very fast until result set gets to large for memory (which then requires swap file writes). |
||
|
|
|
Here's a shortcut to get a comma-delimited string of a single field from a query that returns a number of rows. Pretty quick compared to the alternatives of cursors, etc., and it can be part of a subquery (i.e., get some things, and in one column, the ids of all the things related to each thing in some other table):
Caveat: it won't play nice if your column contains characters that FOR XML PATH will escape. |
||
|
|
|
|
Cursor is not good avoid cursor and use while loop in place of cursor Temp table with key added is the best way to use looping. i have to manipulate more than 1000000 rows in the table and for cursor take 2 min because of complex logic. but when convert cursor in to while loop it will take 25 seconds only. so that's big diffrence in performace. |
||
|
|
