Viewing 15 posts - 16 through 30 (of 46 total)
reggie burns-317942,
Here is a script I have that will generate the commands for creating backups of your databases that are participating in log shipping and are out of sync with...
December 7, 2011 at 11:28 am
Hi reggie burns-317942,
Based on your error message I would guess that the path to the backup is empty. You should try to do a print statement on each of the...
December 7, 2011 at 11:20 am
Hi reggie burns-317942,
I'm not sure what your looking for. I believe this article http://www.sqlservercentral.com/articles/Log+Shipping/75042/ describes the process of setting up log shipping including restoring the database to the secondary instance.
In...
December 7, 2011 at 9:39 am
dhodgeh,
If you could avoid blowing away the database and only change the objects within it then you wouldn't need to rebuild log shipping.
I suppose you could also create a job...
November 8, 2011 at 8:43 am
reggie burns-317942,
Wow 1500 DBs. That's impressive.
I don't have any experience with working across domains so maybe someone else out there can clarify this but I don't see that you should...
November 8, 2011 at 8:28 am
zdvsoftware,
Here is how you could go about having your script actually execute instead of just generating a script.
-- RECOVER ALL DATABASES
DECLARE @sql varchar(MAX)
SELECT @sql = COALESCE(@SQL...
November 7, 2011 at 12:28 pm
Thanks zdvsoftware. This is a very efficient way to recover the databases. Since you've taken us down this road what do you think about added the script to disable the...
November 3, 2011 at 10:28 am
Thanks Steve. Awesome article. I'm adding this one to my briefcase.
November 3, 2011 at 7:56 am
Adam,
Very interesting idea for mitigating data loss.
Thanks
September 29, 2011 at 2:32 pm
John Sargent-410636,
The report does not appear to be impacted by this. I'm a little weary of some of the "time since" columns that appear to repeat the same value but...
September 29, 2011 at 11:55 am
Yuri55,
But it's not database size that determines the interval, it's the transaction log size.
Thanks
September 28, 2011 at 8:43 am
Yuri55,
Yes, some of my databases are on the smaller side but the solution is still sound for any size DBs.
We are backing up transaction logs and it is the...
September 28, 2011 at 8:37 am
Yuri55,
I am using clustering, 1 active, 1 passive. The purpose of log shipping for me is to have a secondary location that the data exists at in case the cluster...
September 28, 2011 at 8:16 am
bret.lowery,
Memory and CPU usage is much better than it was when I had all 130 DBs running from separate jobs. That's what I like about this solution, only 1 execution...
September 28, 2011 at 8:13 am
Viewing 15 posts - 16 through 30 (of 46 total)