Viewing 15 posts - 136 through 150 (of 508 total)
run the shrink first with datapage move then run the reindex. I'm guessing that is what is causing the issues is the DBCC moving datapages to make the shrink happen.
Wes
October 18, 2004 at 1:29 pm
if the trace is incomplete it could cause this. Usually its due to a trace that isn't setup to caputure the correct data for the ITW.
Wes
October 18, 2004 at 9:12 am
Becareful! It was failing due to the fact you were trying to do a transaction log backup on a database set to simple mode. You can always exclude that database...
October 18, 2004 at 9:09 am
DECLARE cur_Databases
CURSOR FOR
SELECT CATALOG_NAME
FROM INFORMATION_SCHEMA.SCHEMATA
WHERE CATALOG_NAME NOT IN ('master', 'msdb', 'tempdb', 'model', 'pubs', 'Northwind')
DECLARE @DbName VARCHAR(50)
DECLARE @Buildstring VARCHAR(100)
OPEN cur_Databases
FETCH NEXT
FROM cur_Databases
INTO @DbName
WHILE @@FETCH_STATUS = 0
...
October 18, 2004 at 8:51 am
First, I would not move the system databases in a clustered enviornment if I could help it at all. I would generate scripts of users, jobs, operators and permissions detach...
October 18, 2004 at 8:46 am
Microsoft provides a free web tool that will let you do what you are talking about. Here is an article that points to some other tools as well: http://sastools.com/b2/post/79394219
Wes
October 18, 2004 at 8:41 am
There is a tool from microsoft called DTCping that can help you troubleshoot DTC problems. It will run a transaction and output any messages to a log file. I would...
October 18, 2004 at 8:38 am
using temp table is one way select into the temp table that has and ident column on it then use a while loop to loop through it. The best thing...
October 3, 2004 at 6:59 am
it means it went to look for a page it thought should have been there and it wasn't there. Since it was in an index you have two choices, try...
October 2, 2004 at 10:21 pm
--**************************************
--
-- Name: Retrieve rows based on a range
-- Description:How to retrieve rows base
-- d on a range. This solution doesn't use...
October 2, 2004 at 8:55 am
Well, SQL should only hold those files long enough to update the statistics then release the database files on a detach. Could there be another process holding the files or...
October 2, 2004 at 8:39 am
This is being deadlocked by another process. Like a front end application
October 1, 2004 at 8:56 pm
You may need to drop the job and recreate it. Also, the job may think it is owned by the old server name and may not allow changes until you...
October 1, 2004 at 8:26 pm
I use a set of stored procedures written by Narayana Vyas Kondreddi
http://vyaskn.tripod.com/server_side_tracing_in_sql_server.htm
I then rap those into a stored procedure and call them from a job that rotates them every ...
October 1, 2004 at 8:23 pm
Viewing 15 posts - 136 through 150 (of 508 total)