September 6, 2012 at 10:38 pm
Comments posted to this topic are about the item GO Part 1
Kenneth FisherI was once offered a wizards hat but it got in the way of my dunce cap.--------------------------------------------------------------------------------For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/[/url]Link to my Blog Post --> www.SQLStudies.com[/url]
September 6, 2012 at 11:14 pm
Awesome. ๐ thank you Kenneth.
1. it will insert 1 record - FROM INSERT INTO
2. it will insert 1 record - But the count in table is 2 - from INSERT..SELECT
3. Iteration1- Inserts 2 records - the count is 4
4. Iteration2- Inserts 4 records - the count is 8
5. Iteration3- Inserts 8 records - the count is 16
6. Iteration4- Inserts 16 records - the count is 32
AND
7. Iteration5- Inserts 32 records - the count is 64
Now this is where I went wrong, actually the #2's GO is the valid first iteration, so it stops at #6 which actually completes 5 iterations. (#7 is not valid)
(so simple and yet I messed up :w00t:)
(Just wanted to say Thank you to all, this is been the best learning experience apart from the regular routine :-))
ww; Raghu
--
The first and the hardest SQL statement I have wrote- "select * from customers" - and I was happy and felt smart.
September 6, 2012 at 11:15 pm
Worthless question because of the fact that you add something that doesnt really relate to the question. The key part in the question is the "GO 5" part. And by adding the select from the table in the insert you make the "GO 5" part secondary.
/T
September 6, 2012 at 11:34 pm
tommyh (9/6/2012)
Worthless question because of the fact that you add something that doesnt really relate to the question. The key part in the question is the "GO 5" part. And by adding the select from the table in the insert you make the "GO 5" part secondary./T
Why does it make GO 5 secondary?
The GO 5 combined with the SELECT makes the insert a power of two, which is a nice twist on the question. The question still deals with the subject: a batch is repeated 5 times because it's followed by GO 5.
@kenneth: very nice question to end the week.
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
September 7, 2012 at 12:41 am
Good question, thanks, and how annoying that I couldn't spot the twist until it was too late.
Lesson: Never answer QOTW before 7am.
---
Note to developers:Want to get the best help? Click here https://www.sqlservercentral.com/articles/forum-etiquette-how-to-post-datacode-on-a-forum-to-get-the-best-help (Jeff Moden)
My blog: http://uksqldba.blogspot.com
Visit http://www.DerekColley.co.uk to find out more about me.
September 7, 2012 at 1:47 am
Good question.
Two days in a row now answering early morning has proved that I shouldn't do it. Yesterday I couldn't add. Today I can't multiply (or at least I get 1*2*2*2*2*2 = 6). Evidently my brain doesn't start functioning until it has been fed and watered. :doze:
Tom
September 7, 2012 at 1:49 am
L' Eomot Inversรฉ (9/7/2012)
Good question.Two days in a row now answering early morning has proved that I shouldn't do it. Yesterday I couldn't add. Today I can't multiply (or at least I get 1*2*2*2*2*2 = 6). Evidently my brain doesn't start functioning until it has been fed and watered. :doze:
Edit: I've just noticed a failure to normalise even to 1 NF in my comment. Two days in a row is clearly a repeating group. :rolleyes:
Tom
September 7, 2012 at 2:39 am
Good question
Nearly missed the 5 after the last go - then had to remember why it was significant
Got my point though
-------------------------------Posting Data Etiquette - Jeff Moden [/url]Smart way to ask a question
There are naive questions, tedious questions, ill-phrased questions, questions put after inadequate self-criticism. But every question is a cry to understand (the world). There is no such thing as a dumb question. โ Carl Sagan
I would never join a club that would allow me as a member - Groucho Marx
September 7, 2012 at 3:10 am
What a fun question, thanks.
_____________________________________________________________________
[font="Comic Sans MS"]"The difficult tasks we do immediately, the impossible takes a little longer"[/font]
September 7, 2012 at 3:10 am
Nice question.
I can see both sides of the discussion above re. whether it was "worthless" or not. I do think the head-scratching (for me, at least) over how many records would be in the table takes away from whether "GO x" is valid or not.
Then again, "Is GO x valid T-SQL?" would be a boring question.
๐
September 7, 2012 at 3:12 am
DugyC (9/7/2012)
What a fun question, thanks.
Actually, yeah it was - well said ๐
September 7, 2012 at 3:21 am
Michael Lysons (9/7/2012)
Then again, "Is GO x valid T-SQL?" would be a boring question.๐
And the answer is surprisingly: no.
GO is not a TSQL statement, but a batch terminator recognised by sqlcmd, osql and SSMS.
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
September 7, 2012 at 3:21 am
L' Eomot Inversรฉ (9/7/2012)
1*2*2*2*2*2 = 6
It does equal 6! At least, that's my excuse.
September 7, 2012 at 3:30 am
This was removed by the editor as SPAM
September 7, 2012 at 3:32 am
Michael Lysons (9/7/2012)
DugyC (9/7/2012)
What a fun question, thanks.Actually, yeah it was - well said ๐
+1
ww; Raghu
--
The first and the hardest SQL statement I have wrote- "select * from customers" - and I was happy and felt smart.
Viewing 15 posts - 1 through 15 (of 39 total)
You must be logged in to reply to this topic. Login to reply