|
|
|
SSCrazy
      
Group: General Forum Members
Last Login: Monday, May 06, 2013 5:31 AM
Points: 2,226,
Visits: 438
|
|
Oleg Netchaev (2/5/2010)
JosephDMarsh (2/5/2010) I chose 4, but (as it turns out) I was guessing. (I thought I knew what was going on, chose an answer and clicked 'Submit' before actually studying the question -- yes, that's a problem I'm working on)
After re-reading the explanation, as well as all of the posts in this thread, I'm not clear on what is happening exactly.
As a Rookie, this is what I *think* is happening: 1. Temp table is created 2. 10 records are created in temp table 3. 4 More records are added to temp table (first part of @sql_str) 4. All records are deleted from temp table (second part of @sql_str)
Obviously, that is not the case. I can't find anything in BOL to help figger this out. Any help?
Thanks in advance, - Joseph Marsh
Joseph, You are correct, but step 3 needs tweaking and last important step is missing. Here is what is happening: 1. Temp table is created 2. 10 records are inserted into the temp table 3. The dynamic sql is examined and then executed by the engine. Since the first part of the dynamic sql selects 4 records, those are placed on the heap (saved in memory) in order to be returned back when needed. They cannot be returned back as of yet because the dynamic sql has second part. 4. All records (10 to be exact) are deleted from the temp table. 5. insert into part now kicks in and what the engine sees at this point is to execute the following: insert into temp table select whatever was selected and saved on the heap from the executing dynamic sql, which happens to be select first 4 records from temp table. Thus, the 4 originally selected records are inserted back into the temp table after every row has just been deleted from it. 4 records inserted into empty table make the table now have 4 records. Hope this helps. This is why I mentioned in my earlier post that if you were to replace the delete from temp table (second portion of the dynamic sql) with something like select 99, 99 then results of the first select (4 records) will be inserted and the results of the second select (one record) will be inserted as well and the result will then be 15 records in the temp table. And if you were to replace the delete from temp table part with the select of a different shape (something like select 1) then nothing will be inserted because the second select will return data not compatible with expected shape (2 columns per record returned). Oleg Oleg
Good question, and an excellent explanation.
/Håkan Winther MCITP:Database Developer 2008
|
|
|
|
|
SSCertifiable
       
Group: General Forum Members
Last Login: Today @ 5:53 PM
Points: 7,179,
Visits: 7,276
|
|
Best QOTD I've seen for a while. It forced me to think.
Tom Is minic a gheibheann béal oscailte dorn dúnta. Is minig a cheapas beul fosgailte dòrn dùinte.
http://es.linkedin.com/in/tomthomsonsoftware
|
|
|
|
|
SSC Veteran
      
Group: General Forum Members
Last Login: Sunday, May 26, 2013 9:33 PM
Points: 255,
Visits: 278
|
|
| Excellent QotD. Grey matter exercise, rather than spot the illegal statement :)
|
|
|
|
|
Mr or Mrs. 500
      
Group: General Forum Members
Last Login: Friday, March 15, 2013 10:35 AM
Points: 594,
Visits: 654
|
|
Wow! The shocking thing to me is that I understood it and answered it right! Those T-SQL classes that I am teaching are starting to pay off
Peter Trast Microsoft Certified ...(insert many literal strings here) Microsoft Design Architect with Alexander Open Systems
|
|
|
|
|
SSChampion
        
Group: General Forum Members
Last Login: Today @ 4:49 AM
Points: 10,990,
Visits: 10,572
|
|
|
|
|
|
Mr or Mrs. 500
      
Group: General Forum Members
Last Login: Friday, March 15, 2013 10:35 AM
Points: 594,
Visits: 654
|
|
Paul White NZ (3/30/2010) This question made my head hurt.
Isn't that normal?
Peter Trast Microsoft Certified ...(insert many literal strings here) Microsoft Design Architect with Alexander Open Systems
|
|
|
|
|
SSChampion
        
Group: General Forum Members
Last Login: Today @ 4:49 AM
Points: 10,990,
Visits: 10,572
|
|
Peter Trast (3/30/2010)
Paul White NZ (3/30/2010) This question made my head hurt.Isn't that normal? I suppose it is - though for varying reasons. This one was good in that it was thinking-related pain, not banging-my-head-against-the-wall-in-frustration pain.
Paul White SQL Server MVP SQLblog.com @SQL_Kiwi
|
|
|
|