Viewing 15 posts - 796 through 810 (of 4,745 total)
was sqlagent down at the time? Or even SQL itself.
February 12, 2013 at 5:08 am
not quite the problem we had here (we had log backups taken outside of the log shipping jobs) but thanks for the post.
February 12, 2013 at 5:06 am
hiren-411325 (2/11/2013)
There is bug in SqlLogShip.exeuse msdb
update dbo.log_shipping_secondary_databases set [restore_delay] = -2000000000
I've not come across this, in which version? Under what circumstances would you want to run this and what...
February 12, 2013 at 2:57 am
make sure you follow the sql2005 version of those instructions. Its vital you keep the resource database with the master database in SQL2005.
This definitely needs to be done out of...
February 9, 2013 at 12:07 pm
For SQL2008 onwards the uninstall process takes care of it, no need to restore databases. SQL2005 its uninstall\reinstall so you would need to restore backups (master and msdb at least...
February 8, 2013 at 3:48 am
thanks
February 7, 2013 at 1:37 pm
well thats out of left field.
I don't do replication but I would have thought you would have to reinitialise it from snapshot.
February 7, 2013 at 10:22 am
BTW, you don't need to reconfigure logshipping you can use your existing jobs and set up, just reinitialise the backup.
You would be best pausing log jobs, taking a full backup...
February 7, 2013 at 8:59 am
my preferred method would be the alter database command
ALTER DATABASE yourdb
(
NAME = logicalfilename,
FILENAME = N'c:\t1dat2.mdf' --for example
);
then offline the database, actually...
February 4, 2013 at 2:27 pm
if you are not sure then play safe and put the databases in full recovery mode and set up log backups.
Certainly do that for the two 24/7 databases, the other...
February 3, 2013 at 3:07 am
check this out, read the discussion as well
February 2, 2013 at 4:51 pm
the space figures you are reporting don't add up, reserved + unallocated should = database size - size of log file.
post the results of this query, obfuscate db info if...
February 2, 2013 at 3:41 am
it really depends on how frequently you want\can take full backups and what your recovery strategy is, i.e. how much data can you afford to lose.
Generally production databases are in...
February 2, 2013 at 2:39 am
Viewing 15 posts - 796 through 810 (of 4,745 total)