Viewing 15 posts - 61 through 75 (of 92 total)
it looks like by now you have already tried most of the stuff.
you did mention that the log file growth is unrestricted and also that you have ample space on...
July 22, 2012 at 12:07 am
yup agree with Steve, it could that good old lock on the backup file.
Further, you usually get a specific message like the following of there are locks on backup file:...
July 21, 2012 at 12:41 pm
did you already run DBCC LOGINFO?
it is a great option to peek in and find out as to what is actually happening inside the transaction log.
July 21, 2012 at 10:11 am
looks like this is a known issue.
Please take a look at the URL(s) mentioned below for additional details:
http://sqlrx.wordpress.com/2011/07/13/remove-maintenance-plans-left-after-a-server-rename/
July 21, 2012 at 10:02 am
can you post the complete error message?
Are you using a alias for the connection?
Try connecting using IP address suffixed by the port no ( XX.XX.XXX.XX,portno) just on a test...
July 21, 2012 at 9:54 am
ok try running the following command:
Exec master.dbo.xp_backup_database
@database = 'master',
@filename = 'F:\MSSQL\BACKUPS\master_manual_test.bak'
if that works then try running the following command:
Exec master.dbo.xp_backup_database
@database = 'master',
@filename = 'F:\MSSQL\BACKUPS\NIGHTLY SYSTEM\master_manual_test.bak'
Maybe that space (in...
July 21, 2012 at 9:41 am
got it, Thanks Gail, I stand corrected.
July 21, 2012 at 7:35 am
may we know what the stopped SQL job was doing?
if it is a dbcc checkdb task then you don't have to worry as the rollback is occurring in the...
July 21, 2012 at 6:12 am
and one additional thing, is the sqlserveragent service running? you may to stop the sqlserveragent service before you restore msdb database, this may only be applicable are refreshing a...
July 21, 2012 at 6:02 am
ok as Gail mentioned you just need to restore MSDB from backup.you can definitely go by that option.
I got it wrong, there is no need to start the server...
July 21, 2012 at 4:51 am
This definitely looks like database corruption (from the 823 message)
if nothing else works I would suggest that you
1)start up SQL Server from command line in minimum configuration mode...
July 21, 2012 at 4:45 am
wow, learnt something new just by reading through all the excellent suggestions from knowledgeable folks. Thanks.
I think most DBAs would go with Log Shipping in this scenario, may be...
July 19, 2012 at 12:51 pm
I am not sure about this but if you create a data file on the principal it should get created on the mirror as well (after the changes are propagated)...
July 19, 2012 at 12:35 pm
For the record, shrinking data files is not a good idea in the first place.
My reasoning is based on the following blog by Paul Randall and we all know...
July 18, 2012 at 1:37 pm
you may have atleast execute the following commands after completion of cloning (which is not a good idea in the first place if you are using features like replication)
1)...
July 18, 2012 at 1:28 pm
Viewing 15 posts - 61 through 75 (of 92 total)