Viewing 15 posts - 676 through 690 (of 821 total)
vk-kirov (12/20/2010)
No rows were inserted into table2? B not C is the correct answer? Terrible, terrible explanation 🙂
The explanation is more terrible than the question: I should read it at...
December 20, 2010 at 1:40 am
Richard M Karpel (12/16/2010)
December 16, 2010 at 8:40 am
The QOtD asks for what is the output of a specific script and this generates this error:
Insert Error: Column name or number of supplied values does not match table definition.
and...
December 16, 2010 at 2:33 am
I always use this this syntax:
RIGHT('0000000000' + CAST(SomeNumber AS VARCHAR(10)),10)
Because I didn't know that STR() is also used for formatting, I thought it only converts string to number.
December 15, 2010 at 1:29 am
This is an old kind of COBOL bug:
using bad datatype to hold integer:
01 IDX PIC 9.
PERFORM LBL VARYING IDX BY 1 UNTIL IDX > 10.
Endless loop
December 14, 2010 at 4:10 am
When I realize that a command or option is deprecated, I stop to waste my time to use it.
December 7, 2010 at 12:59 am
Nils Gustav Stråbø
Now, I understand because
set ansi_padding off is deprecated, it's buggy.
December 6, 2010 at 7:48 am
Nils Gustav Stråbø (12/6/2010)
Is it just me, or is there a bug in SQL Server when ANSI_PADDING is OFF (not that I've ever used it)?
Let me demonstrate, and...
December 6, 2010 at 7:44 am
dawryn (12/6/2010)
How can result have more rows than number of inserted rows :blush:
The INSERT SCRIPT should be executed twice: one with ANSI_PADDING option set to ON and another one to...
December 6, 2010 at 2:37 am
Viewing 15 posts - 676 through 690 (of 821 total)