Viewing 15 posts - 46 through 60 (of 107 total)
try BOL, search for "deadlocks, troubleshooting". This may help to trace where the deadlock is occuring.
HTH Andy
May 20, 2005 at 1:55 am
You could try not dropping the indexes, loading the data and then see which indexes need to be rebuild and then rebuild only those (there's a useful example on BOL...
May 12, 2005 at 1:49 am
Definitely worth using temp tables. We're seen query times (using joins to very large tables) dramatically improve - from hours to minutes. SQL server just seems to choose the wrong...
May 12, 2005 at 1:42 am
I have found occasions where dbcc dbreindex ('tablename') doesn't update all the statistics - I didn't get to the bottom of it, so to be safe I always run dbcc...
April 26, 2005 at 2:27 am
Thankyou for your replies. I'll try the startup stored procedure option
Andy
April 20, 2005 at 2:38 am
I've found a solution here http://www.sqldts.com/default.aspx?271
Thanks for your thoughts and replies.
Andy
April 15, 2005 at 7:33 am
Thanks Graeme
I tried this but it only gives me info on the last run of the job, not how long the job has been running if it is currently running.
Andy
April 15, 2005 at 4:50 am
Thanks Phill
My problem is that I can't seem to find where the job start time is stored. Any ideas?
Andy
April 15, 2005 at 1:58 am
how about doing an update but wrapping it in a transaction?
begin transaction
update table set column = value
--rollback transaction
execute the begin and the update, try your select from another window,...
March 30, 2005 at 1:54 am
Helen
I took the db offline (using sp_dboption), then brought it online using EM and restarted sql, the db came up online, which is not what I want unfortunately. I want offline...
March 18, 2005 at 2:47 am
Thanks Helen, I'll give it a go
March 18, 2005 at 2:25 am
But if the server crashed when the database was up, wouldn't the database just come back up when the server was restarted?
March 17, 2005 at 10:09 am
.... or you could use DTS, but bcp would be my choice. It depends what you're used to or comfortable with, GUI or command line.
September 17, 2004 at 2:20 am
I had a problem where QA hung occaisionally when saving SQL - a reinstall solved the problem.
August 12, 2004 at 1:57 am
I think bcp is your best bet.
bcp out using native format. Remove all indexes before you bcp in (unless the data is sorted in your clustered index order, in...
August 5, 2004 at 1:27 am
Viewing 15 posts - 46 through 60 (of 107 total)