Viewing 15 posts - 151 through 165 (of 305 total)
Could you please advice me.
thanks
December 3, 2009 at 3:59 pm
Hi,
Is there a t-sql command to know the last performed Tail backup on Primary? and last restored tail backup on Secondary?
I found the below script to find last performed Tail...
December 2, 2009 at 11:21 pm
Hi,
Is there a t-sql command to know the last performed Tail backup on Primary? and last restored tail backup on Secondary?
And on Primary, the last transaction log backup happened is...
December 2, 2009 at 6:26 pm
Thank you very much for the clarification steve
Thanks
December 1, 2009 at 4:51 pm
Hi Steve Jones,
I'm waiting for your advice before performing the above steps(which worked in my Test environment) in Production. As you said we cannot do this, I want to know...
December 1, 2009 at 12:39 pm
I'm NOT using any 3rd party tools for backups and just using Spot light for monitoring
November 30, 2009 at 9:52 pm
What version of SQL Server are you running?
What have you tried to resolve the issue?
Thanks, I have googled it and read the information about this from the link
November 30, 2009 at 6:18 pm
How will you set the primary to restoring? you can't back up the tail log, set the database to restoring, and then restore a log from the secondary. You will...
November 30, 2009 at 4:49 pm
Thank you,
Hi,
How are you going to handle the drop-create users in the backup server? Do you have your scripts ready for this?
we are not going to create/drop any users. We...
November 30, 2009 at 10:53 am
ok.. these are the values I got from perfmon for
0.022792896
0.018652975
So do I need to divide these numbers with any value?
If I get a value 2.0 or >2.0, then...
November 29, 2009 at 1:41 pm
Hi Scott,
DECLARE @cmds TABLE (
id INT IDENTITY NOT NULL PRIMARY KEY CLUSTERED,
...
November 11, 2009 at 6:38 pm
Ignacio A,
I have tested the below script many times.
The jobs are showing as they were disabled in SQLAgent, after executing this script BUT the backups are running as usal.
Is...
November 10, 2009 at 11:12 am
I'm using the below script to DISABLE log shipping backup jobs:
USE MSDB;
GO
UPDATE MSDB.dbo.sysjobs
SET Enabled = 0
WHERE [Name] LIKE 'LSBackup%';
GO
After executing the above script, backup jobs are showing as DISABLED but...
November 9, 2009 at 11:11 pm
I got the script from below link http://www.mssqltips.com/tip.asp?tip=1400
thanks
November 9, 2009 at 10:01 pm
Could you help me on above issue?
thanks
November 9, 2009 at 12:19 am
Viewing 15 posts - 151 through 165 (of 305 total)