Viewing 6 posts - 1 through 6 (of 6 total)
Ian Elliott (9/10/2008)
September 10, 2008 at 11:05 am
imagine you need to generate 100 random numbers?
You can hit F5 100 times or use go 100.
September 10, 2008 at 7:44 am
skyline666 (9/10/2008)
ALZDBA (9/10/2008)
And off course you'll need to have the default 'go' for...
September 10, 2008 at 4:47 am
probably Query Analyser doesn't recognize GO [count] syntax.
That proves that Query Analyser has it own syntax validation!
September 10, 2008 at 3:51 am
rudy komacsar (7/7/2008)
Curte question ... a fairly obvious solution ...However, why would one do such a thing ?
I can't see why we would have a table with only an identity,...
July 7, 2008 at 12:28 pm
Dariusz Czechowicz (7/7/2008)
Here is an alternative solution without 'set identity_insert' 😉INSERT INTO TEST WITH (KEEPIDENTITY) (Col1)
SELECT IDENT_CURRENT('Test') FROM OPENROWSET(BULK N'C:\boot.ini', SINGLE_BLOB) AS a
We allways have the hard way to do...
July 7, 2008 at 10:13 am
Viewing 6 posts - 1 through 6 (of 6 total)