Viewing 15 posts - 211 through 225 (of 521 total)
Tricky Question.
I had chosen char(1) instead of varchar(1) because thats what it actually is, a fixed length string.
And I had chosen char(1) instead of nchar(1) because I think it is...
June 5, 2009 at 4:27 pm
Jack Corbett (4/16/2009)
You and Christian are among the folks I respect on SSC (fortunately a growing group) so I wanted to make sure I clarified.
Now that makes me feel honored:Wow:
...
April 17, 2009 at 12:28 am
Jack Corbett (4/16/2009)
April 16, 2009 at 11:57 am
Just for additional clarification:
CASE Fieldxy WHEN NULL THEN ...
This case will always evaluate to false
the correct code in this case would be:
CASE WHEN Fieldxy IS NULL THEN ...
Here you can...
April 16, 2009 at 11:50 am
Carlo Romagnano (4/16/2009)
exec sp_helptext sp_addmessage
in the output search for @severity and you'll find this piece of code that is the law.
...
April 16, 2009 at 3:18 am
I think the confusion is related to the fact that you cannot use severity level 0 for use in sysmessages.
- Severity Levels that can be specified with RAISERROR range from...
April 16, 2009 at 3:16 am
RBarryYoung (4/15/2009)
Christian Buettner (4/15/2009)
Sorry I still don't get it. The ERRORFILE argument routes the errors to a text file, not to a table. Unless I misunderstand the documentation.
Sorry, Christian, I...
April 16, 2009 at 12:34 am
Bruce W Cassidy (4/15/2009)
April 16, 2009 at 12:29 am
Bruce W Cassidy (4/14/2009)
Christian Buettner
April 15, 2009 at 12:30 am
RBarryYoung (4/14/2009)
Christian Buettner (4/14/2009)
RBarryYoung (4/14/2009)
Christian Buettner (4/14/2009)
In one of my data import apps (Oracle to SQL Server), I use temp...
April 15, 2009 at 12:19 am
RBarryYoung (4/14/2009)
Christian Buettner (4/14/2009)
In one of my data import apps (Oracle to SQL Server), I use temp tables with varchar(500)...
April 14, 2009 at 4:08 pm
I'll just jump in and risk making a fool of myself.
In one of my data import apps (Oracle to SQL Server), I use temp tables with varchar(500) fields to ensure...
April 14, 2009 at 2:16 pm
Hi Chris,
Very fancy stuff that you posted. Wasn't even aware you could do such fancy stuff in an ORDER BY:-).
Actually I did want to tell you that your queries did...
April 7, 2009 at 2:37 am
GSquared (4/6/2009)
update #test
set col1 = isnull(col1,0),
col2 = isnull(col2,0),
col3 = isnull(col3,0),
col4 = isnull(col4,0),
col5 = isnull(col5,0),
col6 = isnull(col6,0),
col7 = isnull(col7,0),
col8 = isnull(col8,0)
;with...
April 7, 2009 at 12:59 am
GSquared (4/3/2009)
Anyone else have any ideas on this?
Nope, as I just wrote in another post, solving this with SQL is probably more or less torture.
And I think we have already...
April 4, 2009 at 4:46 am
Viewing 15 posts - 211 through 225 (of 521 total)