Viewing 15 posts - 48,976 through 48,990 (of 49,571 total)
See if you can get hold of the SQL Server 2005 upgrade adviser. It's probably available for download from MS.
With the testing I'm doing for upgrades, it's not so much...
November 3, 2006 at 12:13 am
What does the execution plan look like with the isnull and without it?
If it's a stored procedure, it may be getting a bad execution plan. If the optimiser compiles for...
November 2, 2006 at 11:32 pm
My main server has 2 heavily utilised large databases and a few smaller, less used ones.
We split the biggest database into 3 data files and put each one on a...
November 1, 2006 at 11:52 pm
Is there any trigger on the Address table? Are any errors been raised?
Are you using a cursor for the Address update as well? If so, I may have an idea...
November 1, 2006 at 10:55 pm
Could you please start your own thread for this. You'll get more replies and reads than if you hijack another.
November 1, 2006 at 3:47 am
Strange. I know the query optimiser has changed in 2005 and often picks different plans to what the 2000 one would have picked.
Can you check the execution plan of the...
November 1, 2006 at 2:46 am
Is any error been thrown? Does the user executing it have update rights to the table? Are there any triggers on the table that might be rolling back your changes?
Can...
November 1, 2006 at 1:35 am
Rebuild all your indexes and update all your statistics.
The upgrade from 2000 to 2005 doesn't do that and I have heard of several issues where queries run slower in 2005...
November 1, 2006 at 12:08 am
Not too hard and perfect for CASE. Try this
SELECT CustID, InvID,
CASE isRegularCustomer WHEN 1...
November 1, 2006 at 12:04 am
Dunno. Depends on whether or not you need (business and complience requirement) to do a report on them first.
If not, a SQL agent job, command line doing a delete would...
October 31, 2006 at 7:05 am
My guess is that you have c2 auditing switched on. Run sp_configure and have a look at the value of the c2 auditing option.
If it is on, you will...
October 31, 2006 at 1:28 am
I have a habit, if I'm sitting in on an interview, of asking a very difficult question related to the position that the person's applying for.
I'm not necesarily looking for...
October 27, 2006 at 7:06 am
It's fairly simple
Open profiler and create a new trace.
Connect to the server you want to profile.
On the first screen check the box that says save to table. Enter the table...
October 26, 2006 at 12:42 pm
I glanced through the dm views and I can't find anything there either.
You can set profiler to log to a table (provided your server's not too busy) and then just...
October 25, 2006 at 11:41 pm
Viewing 15 posts - 48,976 through 48,990 (of 49,571 total)