Viewing 5 posts - 1 through 5 (of 5 total)
Hello Steve!
I've nearly the same problem with collation. I've had to build a "data warehouse" from four different different databases of four systems, one of them is multilingual.
The solution slightly...
October 11, 2007 at 1:55 am
Hey Eddie!
I like this conversation very much!
Try this with only 100.000 recs!
if object_id ('tempdb.dbo.#TimeTrial') is not null drop table #TimeTrial
create table...
May 22, 2007 at 9:45 am
Excuse Me!
Maybe my english is poor (or too short), I'm from Hungary.
I mean "looping" --> looping...
May 17, 2007 at 5:22 am
-- Try to use this FUNCTION instead of any temptables, looping, dinamyc SQL and so on.
if exists (select * from dbo.sysobjects where name = 'f_hextostr' and xtype...
May 17, 2007 at 4:26 am
-- With exact parameters:
SELECT *
FROM orders
WHERE ISNULL(@ordernumber,ordernumber)=ordernumber
AND ISNULL(@ClientName,ClientName)=ClientName
-- In case of using "LIKE"
SELECT *
FROM orders
WHERE ISNULL(@ordernumber,ordernumber)=ordernumber
AND ClientName LIKE ISNULL(@ClientName,ClientName)+ '%'
-- Test Your solution for SPEED !
R.Dragossy
November 23, 2005 at 1:38 am
Viewing 5 posts - 1 through 5 (of 5 total)