Viewing 15 posts - 91 through 105 (of 118 total)
To check your drives you can use SQLIOStress utility which can be dowloaded from MS:
http://support.microsoft.com/default.aspx?scid=kb;en-us;231619
April 21, 2005 at 1:21 am
I concur with you that updating system tables should be used only as a last resort. This is not such a case. Instead of 'auto_fix' option I use the following...
April 19, 2005 at 3:19 am
What optimizations do you run against your db at 1 AM? Index rebuild/defrag? That could be the culprit.
April 16, 2005 at 3:33 am
Then you must have a problem in your log shipping setup. Because DDL operations are propagated to a standby server. Without this log shipping would be useless.
April 16, 2005 at 1:40 am
In fact, in case a) you take a transaction log backup immediately after failure occured (you don't need data files accessible) - with NO_TRUNCATE clause. Then restore last full backup...
April 14, 2005 at 12:31 am
see this article:
http://support.microsoft.com/kb/240872/EN-US/
I've never had to do that so I can offer no personal experience
April 13, 2005 at 10:07 am
For answer to a, look up "How to restore to the point of failure (Transact-SQL)" topic in Books Online for details. You should be able to recover all committed transactions...
April 13, 2005 at 9:34 am
I wonder if there's a way to change the instance name (part after \) other than reinstall server with different name. Service names, directories etc. have named instance name included,...
April 13, 2005 at 3:45 am
One more suggestion. You could set your db into SIMPLE RECOVERY model before running reindexing. Thus, you can avoid large tr. log backups.
1.Perform last transaction log backup to capture all changes prior to...
April 9, 2005 at 9:29 am
There's a known issue with rebuildm if you point it to database files located on install cd. Try copying the files to disk, make sure that they don't have read-only...
April 8, 2005 at 3:07 am
DBCC DBREINDEX is not an on-line operation - table being processed is not accessible to other processes. I've seen assertions that this is true only when clustered indexes are rebuilt,...
April 8, 2005 at 2:51 am
you can query restorehistory table in msdb database.
for example:
select max(restore_date)
from msdb.dbo.restorehistory
where destination_database_name='pubs'
April 5, 2005 at 8:33 am
The MS procedure recently worked for me, but just for testing purposes. The dummy database must have the same name as the original one, otherwise you cannot apply the log...
April 2, 2005 at 12:24 pm
Beware one thing. If you want to copy master and msdb datafiles and you have different drive letters on the new server, pointers to individual dbs datafiles in master will...
March 30, 2005 at 11:48 pm
check this article and the additional links :
March 30, 2005 at 4:16 am
Viewing 15 posts - 91 through 105 (of 118 total)