Viewing 15 posts - 46 through 60 (of 67 total)
Create the logins in the primary and grant them access to the log shipped db. On the secondary, you have to add the logins using the same SID.
February 14, 2008 at 8:44 am
Right, filegroup backups are not as straightforward. 🙂
February 14, 2008 at 8:19 am
With db size that big, you may also want to consider offloading checkdb execution on your online production database, by restoring your backups on a separate machine and running checkdb...
February 13, 2008 at 7:56 pm
If you think all the necessary tasks have been executed properly for both 0 and 1 process exit codes, then consider them both successful.
You may want to script it...
February 12, 2008 at 4:52 pm
I never tried it tho. But if I would, I'll try it out first on a dev somewhere, or look what sp_addserver/sp_dropserver really does, see if there's any dependent tables...
January 27, 2008 at 1:57 pm
Have you tried sql jobs?
January 25, 2008 at 8:06 pm
Full backups shouldn't break your log shipping.
January 25, 2008 at 8:02 pm
Why would you want to update it? What are you trying?
January 25, 2008 at 7:58 pm
I meant you ditch log restore, and go with dts, otherwise, you'll get the same changes as with your source database.
January 25, 2008 at 7:54 pm
Then you'll have to script it out. Load the result of restore headeronly to a temp table, then query the position column.
Log shipping is the way to go if...
January 24, 2008 at 12:37 pm
Man, can't believe I said to recover without tlog, that completely won't happen! I stand to be corrected..
Tho it's true that filegroup/file backup on occassion gets implemented on vldbs, it...
January 24, 2008 at 8:34 am
Use RESTORE LOG...WITH FILE =
If you look at the header information of your backup file (using RESTORE HEADERONLY), you take the file number from the POSITION column..the latest...
January 23, 2008 at 7:46 pm
Not that I know. How about backing up to individual files to one location, then copy the latest to the other location deleting the old one?
Or, backup with noinit,...
January 23, 2008 at 5:49 pm
I assume you already came accross an ugly solution that updates the system table...otherwise, you may need to call MS support.
January 23, 2008 at 10:55 am
Viewing 15 posts - 46 through 60 (of 67 total)