Viewing 15 posts - 46 through 60 (of 94 total)
I thought this wouldn't work because I assumed 2005 worked the same as 2008. I was surprised to see that I was wrong. I wanted to see it work in...
August 25, 2009 at 9:15 am
I did a little research on this and found that this was suggested on the MS Connect site on 7/7/2005 and 4/22/2008. Microsoft said it was too late to include...
August 12, 2009 at 1:03 pm
Christian Buettner (8/10/2009)
I think that is not true.
Try select isnumeric('$$')
for example.
It will evaluate to false, although this character ($) was no issue in your previous example.
The reason why...
August 10, 2009 at 10:18 am
isnumeric is just evaluating valid characters.
This will produce 1 also
select isnumeric('-$,')
August 7, 2009 at 10:07 am
Michael Poppers (7/10/2009)
Explanation: The string returned by SUBSTRING is truncated if Start + Length -1 is greater than the length of the Expression string.
I think Mr. Williams meant...
July 10, 2009 at 9:37 am
Another article that describes this in more detail.
http://support.microsoft.com/kb/310421
-Kevin Williams
July 10, 2009 at 9:01 am
Well I got it wrong because I was not familiar with the except operator. But is MDX considered T-SQL?
April 13, 2009 at 8:30 pm
How about using the replace() function when selecting the data to export? Here is an example.
declare @test-2 varchar(8000)
select @test-2 = 'test
test
test'
select @test-2
select replace(replace(@Test, char(10), ''), char(13), ' - ')
April 10, 2009 at 9:44 am
Lynn Pettis (3/23/2009)
kevin.l.williams (3/23/2009)
"Since col2 is used in the WHERE clause, the output does not...
March 23, 2009 at 10:18 am
I know why the null value is not returned but I am puzzled by the explanation.
"Since col2 is used in the WHERE clause, the output does not include the corresponding...
March 23, 2009 at 9:56 am
natet (3/20/2009)
After all, the Start Tran started a new Logical Unit...
March 20, 2009 at 10:22 am
At first I was confused about why it would not return the already committed data and I did an experiment by changing the code. Very interesting question. Thanks!
--first window
CREATE TABLE...
March 19, 2009 at 11:10 am
Thank you very much for this QOTD! I have been using COALESCE only when I was working with more than two values and was totally unaware of this behavior of...
September 9, 2008 at 9:26 am
Viewing 15 posts - 46 through 60 (of 94 total)