Viewing 15 posts - 14,971 through 14,985 (of 18,923 total)
The only explanation I can find is that the server seems to do a rtrim by default when comparing strings. Anyone can confirm this?
July 14, 2005 at 12:14 pm
The d is ignored also :
select ascii('ad')
Looks like it returns the ascii of the first character only.
July 14, 2005 at 11:59 am
What's procedural about this???
CREATE FUNCTION dbo.ReplaceSpecialCharacter2000_2( @ValueToAlter varchar(2000))
RETURNS varchar(2000)
AS
BEGIN
SELECT @ValueToAlter = REPLACE( @ValueToAlter, Search, Replacement) FROM dbo.SpecialCharacters2
RETURN ( @ValueToAlter )
END
GO
July 14, 2005 at 11:57 am
I was testing for performance.
Have closer look at the call :
Select dbo.fnName (REPLICATE( 'f''gr"7 df@@8j\', 130))
![]()
July 14, 2005 at 11:46 am
I can't find squat on this behavior. The only stuff I find is about DTS.
July 14, 2005 at 11:33 am
Indexing strategy is far more complexe than just putting indexes. Maintaining them also has a cost and it can be pretty high.
July 14, 2005 at 11:22 am
Probabely not impossible to do but it would be considered a worst practice. What action do you need to perform in that webservice that can't be handled on the...
July 14, 2005 at 11:19 am
Make sure you understand the part about the order by in the exemple.. or this is gonna come byte you in the ass
July 14, 2005 at 10:29 am
What the hell kind of application was that??? I have one like that here and it's not pretty
.
July 14, 2005 at 10:27 am
Alright... start a new thread for the next question so that others may benefit from the answer.
July 14, 2005 at 10:21 am
Select * from dbo.MyTable where MyField like '%''%'
July 14, 2005 at 10:19 am
Ok I defenitly signed the papers, where do I send them now
?
July 14, 2005 at 10:18 am
Viewing 15 posts - 14,971 through 14,985 (of 18,923 total)