Viewing 15 posts - 676 through 690 (of 819 total)
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
The only worth of the question is the good news:
"filtered index" (SQL Server 2008).
This feature is present in MS-ACCESS starting from version 1.0 (year 1990).
December 2, 2010 at 6:33 am
INSERT ... WHERE ...
... and UPDATE ????
I could insert NULL and then change (UPDATE) it to an existing value!
The solution is insert/update by stored proc, but the risk to miss...
December 2, 2010 at 2:40 am
Viewing 15 posts - 676 through 690 (of 819 total)