Viewing 15 posts - 5,416 through 5,430 (of 6,036 total)
Bull shit.
Sorry, but I cannot find more adequate definition.
April 8, 2006 at 6:36 am
So do we have anything that's faster than RTRIM(ERR)>''?
Did you read my last post&
WHERE Err>''
is all you need.
April 7, 2006 at 6:25 am
declare @ERR char(20)
set @ERR = ' '
select 1
where @ERR > ''
select 1
where len(@ERR) > 0
It does not return anything. No matter that @ERR has actually 20 spaces inside.
April 6, 2006 at 8:56 pm
noeld,
when LEN(Err) = 0 there are no beginning spaces.
All spaces are trailing.
Otherwise LEN gonna be > 0
In this task we don't care about not empty strings, string is not empty...
April 6, 2006 at 8:43 pm
They do.
But LEN ignores trailing spaces.
April 6, 2006 at 6:34 pm
Proper call:
<Server>.<Database>.<Owner>.<Object>
April 6, 2006 at 4:03 pm
LEN(RTRIM(LTRIM(ERR))) > 0
is equal to
LEN(ERR) > 0
April 6, 2006 at 3:55 pm
Can you describe desired result in words?
What's a logic behind it?
April 6, 2006 at 3:53 pm
Where is order of your codes defined?
From the example you displayed it's not possible to say if B is following E or E is following B.
April 5, 2006 at 3:54 pm
Lester,
despite you have "=" between quotes, you have "+" outside the quotes, and this is operator as well. ![]()
Than, there is no datatype varchar...
April 5, 2006 at 3:55 am
1st - you cannot use any operation within PRINT command.
Construction like
PRINT 'Number of rows='+ CAST(@intRows as varchar)
just not allowed.
declare @string
SELECT @string = 'Number of rows='+ CAST(@intRows as varchar(10)...
April 4, 2006 at 11:34 pm
Just guess:
do you actually use something like PRINT ... + CAST(... as varchar(10)) ?
April 4, 2006 at 10:52 pm
Viewing 15 posts - 5,416 through 5,430 (of 6,036 total)