Viewing 15 posts - 1 through 15 (of 16 total)
The soundex query? select custname from mastercustomer where soundex(custname) = soundex=('SCOTTIE').
result:
custname
scott
scotty
scot
....
This is what i'm looking for but is this the right contxt to use soundex? or should i use full-text...
July 14, 2010 at 6:20 am
Lynn Pettis (9/19/2008)
John N (9/19/2008)
example
SELECT id1, id2, id3 FROM table
IF...
September 19, 2008 at 9:32 am
Jeff Moden (11/6/2007)
No, no... no transfer of data from TableA to TableB... it'll take too long. Go back and look at what we wrote...
I understood what you wrote earlier,...
November 6, 2007 at 8:17 pm
:D, I got it!!! thanks for all the help!
DTS package--> drop view mytable-->create view mytable (tbB) -->truncate tableA -->bulk import
-->drop view mytable -->create view mytable(tbA) --> truncate tableB --> transferdata...
November 6, 2007 at 2:24 pm
this is done in the stored procedure before the bulk load then dropped after the bulk load correct?
do i replicate tableA with tableB afterwards?
TIA.. very much
November 6, 2007 at 12:49 pm
Jeff.. OK since I'm a noivce with this I'm going to ask that you help me out in more detail.
OK this is what i've got:
1. DTS package schedule, truncate table,...
November 6, 2007 at 10:07 am
Thank you for all your suggestions, while I try to digest all the options.
Jeff can you tell me how to do what your suggesting?
November 6, 2007 at 7:43 am
can you give me a hint on how to do this?
tia
November 5, 2007 at 6:50 pm
Matt,
thanks.. that is what i'll do.
Sergiy,
the data is not really that much but the problem is it's coming from a vendor api with a standard data for all their users....
November 5, 2007 at 2:23 pm
Matt Miller (11/5/2007)
November 5, 2007 at 12:56 pm
no, it's done 3 times a day.
i know it's a bad idea, but not my decision.
November 5, 2007 at 12:16 pm
this is almost perfect except for the states that have no jobs has a count of 1 instead of 0.
got it to work.. change the count(t1.state) thanks
August 21, 2007 at 2:59 pm
i think i figured it out..
select distinct table2.statename, table2.stateabbrv, count(table1.state) as c from
table1 join table2 on table2.stateabbrv = table1.state
group by table2.statename, table2.stateabbrv
August 21, 2007 at 1:43 pm
Viewing 15 posts - 1 through 15 (of 16 total)