|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Backup stratagy Overviewcan some one point me in the direction of a good simple overview of back stratagy for sequal server. I'm running axapta, I run a full online backup everynight, compress it, copy it to another server, reconnect just the mdb file. This works fine, but I would like to bring over the transcation file every x minutes and apply it. How and when does the transaction log get truncated, is it automatically done for a full backup. we are actually doing two full backups of the data base, will this work or will I have incomplete transcation logs? because the second backup is not copies across and restored because of day time band width restrictions? Thnaks David Hills -- Thanks David Hills David,
First, I would point you to the SQL Books Online, the documentation which is pretty thorough: http://technet.microsoft.com/en-us/library/ms187048.aspx -- Overall topic http://technet.microsoft.com/en-us/library/ms191239(SQL.90).aspx -- Strategies From your comments, you might find the Log Shipping topic interesting as well, though maybe it is more than you want to do. http://technet.microsoft.com/en-us/library/ms187103(SQL.90).aspx RLF Show quoteHide quote "David Hills" <DavidHi***@discussions.microsoft.com> wrote in message news:45136485-F371-4C7C-BD82-2EB304E001AD@microsoft.com... > Good Morning > > can some one point me in the direction of a good simple overview of back > stratagy > for sequal server. I'm running axapta, I run a full online backup > everynight, compress it, copy it to another server, reconnect just the mdb > file. > > This works fine, but I would like to bring over the transcation file every > x > minutes and apply it. > > How and when does the transaction log get truncated, is it automatically > done for a full backup. we are actually doing two full backups of the data > base, will this work > or will I have incomplete transcation logs? because the second backup is > not > copies across and restored because of day time band width restrictions? > > Thnaks > > > David Hills > > > > > -- > Thanks > > > > David Hills David Hills (DavidHi***@discussions.microsoft.com) writes:
> How and when does the transaction log get truncated, is it automatically The transaction log is truncated when you back up the log. When you back> done for a full backup. we are actually doing two full backups of the > data base, will this work or will I have incomplete transcation logs? > because the second backup is not copies across and restored because of > day time band width restrictions? up the database, nothing happens to the log. (Well, records of the backup is written to it.) If you are in simple recovery, the log gets truncated every now in then. You need to use the full recovery model to be able to ship your logs. -- Erland Sommarskog, SQL Server MVP, esq***@sommarskog.se Links for SQL Server Books Online: SQL 2008: http://msdn.microsoft.com/en-us/sqlserver/cc514207.aspx SQL 2005: http://msdn.microsoft.com/en-us/sqlserver/bb895970.aspx SQL 2000: http://www.microsoft.com/sql/prodinfo/previousversions/books.mspx
Other interesting topics
Free tools for keeping sql server instances of db in synch?
timeout expired on View RE: Database Engine Tuning Advisor RE: Weird BCP Issue No trace of maintenance plan checkdb in sql server error log?!? I couldn't restore the bak file problem using the Microsoft SQL Server Manager Studio SQL Best Practise Analyzer Cannot modify maintenance plan in SQL Server 2008 RE: Database Engine Tuning Advisor |
|||||||||||||||||||||||