|
|
|
SSC-Dedicated
           
Group: Administrators
Last Login: Today @ 5:09 AM
Points: 31,526,
Visits: 13,864
|
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Monday, November 23, 2009 12:58 PM
Points: 2,
Visits: 6
|
|
hi @all,
i want to know a bit more about cursors and the technical way they are realized. my understanding is, that cursors are pointers on a result-set within the ram. the result-set is small (comparing to the table the rows are from) and the sql which perform the result-set is executed only one time (i hope :o) ), right? So what we have is a small result-set within a location the cpu has the fastest way to grab rows from this result-set. why should this cursors (used in for loops) not be more efficient than ordinary sql-queries (in for loops)?
ordinary queries grap the rows from the hard-disk, where the cpu needs more time to grap them. and erery time the sql-query is executed the a full table-scan must be performed to find the row.
abstract: cursors (used in for loops): - sql-query to get the result-set is executed one time, to make a result set (in the initialsation-part of procedure) - one small result-set - fastest way for a cpu to grap the data, because they are in the ram
ordinary queries (used in for loops): - executed to get on row per query - in every execution the whole table has to be scaned to get one row, so there is no result-set to crawl over - no fast way for the cpu to grap the data, because data is on harddrive
what du you think about what my understanding of cursors is. am i right? please let me know.
cheers tommy
|
|
|
|
|
SSC-Insane
         
Group: General Forum Members
Last Login: Today @ 8:42 AM
Points: 21,832,
Visits: 27,857
|
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 7:18 AM
Points: 33,112,
Visits: 27,038
|
|
tho.pfaff (11/21/2009) hi @all,
i want to know a bit more about cursors and the technical way they are realized. my understanding is, that cursors are pointers on a result-set within the ram. the result-set is small (comparing to the table the rows are from) and the sql which perform the result-set is executed only one time (i hope :o) ), right? So what we have is a small result-set within a location the cpu has the fastest way to grab rows from this result-set. why should this cursors (used in for loops) not be more efficient than ordinary sql-queries (in for loops)?
ordinary queries grap the rows from the hard-disk, where the cpu needs more time to grap them. and erery time the sql-query is executed the a full table-scan must be performed to find the row.
abstract: cursors (used in for loops): - sql-query to get the result-set is executed one time, to make a result set (in the initialsation-part of procedure) - one small result-set - fastest way for a cpu to grap the data, because they are in the ram
ordinary queries (used in for loops): - executed to get on row per query - in every execution the whole table has to be scaned to get one row, so there is no result-set to crawl over - no fast way for the cpu to grap the data, because data is on harddrive
what du you think about what my understanding of cursors is. am i right? please let me know.
cheers tommy
I'm not sure who wrote that for you but it's mostly full of hooie... not all cursors are in ram just like not all non cursors are on disk.
Baiscally, cursors will always be slower than "Set Based" queries because cursors overcome and overwhelm the "natural" way that SQL Server operates.
With only 1 exception in 10,000, you should simply avoid cursors.
--Jeff Moden "RBAR is pronounced "ree-bar" and is a "Modenism" for "Row-By-Agonizing-Row".
First step towards the paradigm shift of writing Set Based code: Stop thinking about what you want to do to a row... think, instead, of what you want to do to a column."
For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/
For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
|
|
|
|
|
SSCommitted
      
Group: General Forum Members
Last Login: Monday, February 11, 2013 8:27 AM
Points: 1,735,
Visits: 1,947
|
|
tho.pfaff (11/21/2009) ordinary queries grap the rows from the hard-disk, where the cpu needs more time to grap them. and erery time the sql-query is executed the a full table-scan must be performed to find the row.
It is not always true that ordinary queries fetches the rows from hard disk.
Regarding full table scan must be performed to find a row, that would be true if the company has a policy of no indexes and would never use an index .... .
Your assumption is wrong Tommy, a full table scan happens when there are no indexes and can be avoided by having appropriate indexes..
Bru Medishetty
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.com\LearnSQLWithBru
Twitter -- BruMedishetty
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Tuesday, May 21, 2013 8:38 AM
Points: 1,032,
Visits: 390
|
|
Bru Medishetty (11/22/2009)
tho.pfaff (11/21/2009) ordinary queries grap the rows from the hard-disk, where the cpu needs more time to grap them. and erery time the sql-query is executed the a full table-scan must be performed to find the row.
It is not always true that ordinary queries fetches the rows from hard disk. Regarding full table scan must be performed to find a row, that would be true if the company has a policy of no indexes and would never use an index ....  . Your assumption is wrong Tommy, a full table scan happens when there are no indexes and can be avoided by having appropriate indexes..
What you said is true, but it seems to me that the question wasn't between a set-based query and cursor, but between a query in a for loop thus making it a RBAR operation rather than set-based.
The question seems to spring from a commonly held belief that if you need a RBAR operation (you almost never do) you are better off "rolling your own" cursors by using a loop that by using a cursor. My testing of this has proven (to me) that if you really need RBAR operation, you are likely better off using a real cursor as opposed to "rolling your own."
/*****************
If most people are not willing to see the difficulty, this is mainly because, consciously or unconsciously, they assume that it will be they who will settle these questions for the others, and because they are convinced of their own capacity to do this. -Friedrich August von Hayek
*****************/
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 7:18 AM
Points: 33,112,
Visits: 27,038
|
|
I agree with that whole heartedly, DC. I've found that a well written cursor will frequently beat a home grown While Loop just as you said. I'll also add that I think of While Loops as nothing more than "home grown cursors" and have resorted to calling them "cursors" even though that's probably a bit confusing to most. Based on that, allow me to correct what I said in the post previous to this one just to be clear... there are exceptions to every rule but all forms of RBAR (not just cursors) should be avoided if possible. I'll also add that, given a little thought, it's usually possible to avoid them without resorting to just another form of RBAR.
--Jeff Moden "RBAR is pronounced "ree-bar" and is a "Modenism" for "Row-By-Agonizing-Row".
First step towards the paradigm shift of writing Set Based code: Stop thinking about what you want to do to a row... think, instead, of what you want to do to a column."
For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/
For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
|
|
|
|