Viewing 15 posts - 16 through 30 (of 45 total)
Any thought of cleaning the string of Suffix (Mr, Mrs) and prefix (MD, Jr) and just using SOUNDEX?
August 11, 2003 at 6:06 pm
Are you actually running the code or just getting a plan?
August 11, 2003 at 6:03 pm
Ok,
You have millions of rows and you need to delete some.
-- Create an index that covers the 'create date' or however you qualify older than 3 motnhs.
-- Cluster on...
August 11, 2003 at 6:01 pm
Need to do one for each table, it wouldn't be that hard to script however. Also there are some audit tools that do this for you.
August 11, 2003 at 5:55 pm
Doesn't the index tuning tool give you a top 10?
August 11, 2003 at 5:41 pm
Why 7 vs. 2K matters. The optimizer in 2K does a better job at using some indexes and developes better plans.
The network may be an issue. You may...
August 7, 2003 at 10:23 am
Why not just store them in files and put the file location in SQL Server. Also you sure you want to do this word files that could be edited and...
August 7, 2003 at 10:17 am
Have you tried restoring a full and then appling the transaction logs after. Perhaps a tranlog failed to get shipped.
August 7, 2003 at 10:10 am
If you do a massive delete you may want to reindex the table or at least set recompile on for it.
July 25, 2003 at 9:37 pm
Ok,
First the LIKE statements in your Unions may be hurting you. If the like was LIKE '%dog%' I know it would be hurting you.
Is there an index on ATC_CD...
July 25, 2003 at 9:34 pm
Try a dbcc checkcatalog as well as forcing a recompile on every table, view and SP.
Also take a peek at the data in syscomments.
Good Luck
Henry
July 25, 2003 at 9:17 pm
Ok,
I have a bias here. I have every one of the things I am going to suggest you get.
1) A BS degree is CS with a minor in business...
July 25, 2003 at 9:14 pm
Ok, why unfettered Access, access to a SQL Server database for users unless they really know what they are doing.
Two words: Table Lock
It is really, really easy for someone...
July 8, 2003 at 9:39 am
Next time you may want to just BCP the data out and use Oracle's version of BCP (I forget what it is called) to bring the data in. Don't know...
July 8, 2003 at 9:34 am
Viewing 15 posts - 16 through 30 (of 45 total)