Viewing 15 posts - 151 through 165 (of 201 total)
Grant Fritchey (9/30/2010)
Must not have enough coffee. I just saw characters. Good catch.
Mmmmm coffee 😀
September 30, 2010 at 6:20 am
Grant Fritchey (9/30/2010)
September 30, 2010 at 5:56 am
Hugo Kornelis (9/27/2010)
tommyh (9/27/2010)
September 27, 2010 at 4:22 am
Hugo Kornelis (9/27/2010)
tommyh (9/27/2010)
da-zero (9/27/2010)
But I don't think that considering scientific notation as numeric is stupid. 2e1 is just...
September 27, 2010 at 3:42 am
Toreador (9/27/2010)
tommyh (9/27/2010)
September 27, 2010 at 3:18 am
da-zero (9/27/2010)
tommyh (9/27/2010)
da-zero (9/27/2010)
But I don't think that considering scientific notation as numeric is stupid. 2e1 is just another...
September 27, 2010 at 2:02 am
da-zero (9/27/2010)
But I don't think that considering scientific notation as numeric is stupid. 2e1 is just another way writing...
September 27, 2010 at 12:47 am
UMG Developer (9/25/2010)
Thanks for the question.This should be good to help people understand how ISNUMERIC works...
<rant>
Yeah... like total crap. Its borderline useless. Just to further demonstrate that.
select isnumeric('2e1')
This gives...
September 26, 2010 at 11:54 pm
sathish.tbj (9/24/2010)
I apologize for cross posting.
Can you please explain me about this particular area of a solution? I like to know the process.
--------------------------------------------------------------------------------------
DECLARE @XML XML;
SELECT @XML = '<r>'+REPLACE(@Code_String, ',',...
September 24, 2010 at 6:25 am
Crossposting = bad.
Discussion about this can be found here as well
http://www.sqlservercentral.com/Forums/Topic992468-338-1.aspx
September 24, 2010 at 5:30 am
Rune Bivrin (9/24/2010)
Toreador (9/24/2010)
Rune Bivrin (9/24/2010)
September 24, 2010 at 3:20 am
sathish.tbj (9/24/2010)
ALTER function [dbo].[GetEloquaColumn]
(@Code_String varchar(200)) returns varchar(300)
Here the value passed looks like [dbo].[GetEloquaColumn] ('HC01,HC02')
as
begin
declare @code varchar(200)
set @code =replace(@Code_String,',',''',''')
set @code=''''+@code+''''
DECLARE @CodeList varchar(250)...
September 24, 2010 at 2:49 am
Have to agree with UMG Developer. The "Multiple identifier columns" shouldnt be part of the answer for 2 reasons.
1. Its not part of MS recommendations (atleast not on the page...
September 23, 2010 at 11:58 pm
Well as far as i know there is no way off doing this. A maybe acceptable solution would be to search all "normal" string column (char/varchar and unicode version).
However...
September 23, 2010 at 6:45 am
p0peye (9/23/2010)
My understanding is, you wont be able to commit or rollback inner transaction separately as the outer transaction will override with its commit/rollback...
September 23, 2010 at 1:03 am
Viewing 15 posts - 151 through 165 (of 201 total)