Viewing 4 posts - 1 through 4 (of 4 total)
Thanks for the response, but:
1) a)Indexed on key I'm using to find row
b)Optimised query plan
2)Yup
3)No triggers
4)Yes
I'm tearing my hair out here......
July 4, 2002 at 7:24 am
rewrite your table to have 1 column and the bulk insert to be tab seperated, then run a process on the result table to split out the comma seperated...
July 4, 2002 at 3:33 am
I have a similar process but was disatisfied with soundex for phonetic matching, so here is an alternate algorithm:
CREATE FUNCTION dbo.DoubleMetaPhone (@str varchar(70))
RETURNS char(10)
AS
BEGIN
/*#########################################################################
Double Metaphone Phonetic Matching...
July 4, 2002 at 3:28 am
Or use sp_executesql N'select ' + @FieldList + N' from table' on 2000
July 4, 2002 at 3:15 am
Viewing 4 posts - 1 through 4 (of 4 total)