Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: best solution for backup with archivelog mode
Andrea wrote:
> On 30 Apr, 20:16, mark.reming..._at_gmail.com wrote:
>> I don't think you should be deleting archlogs *before* a backup, >> whether it's the oldest archlog or not, and whether it's a offline or >> online backup. Always wait until after the backup completes before >> you delete anything. Assuming the database shutdown was clean (i.e., >> a "shutdown immediate" completed without errors) then you can often >> nuke all archlogs created prior to the backup. The exceptions are >> when using logminer technologies like Streams and DataGuard, because >> the capture process tends to start scraping a few SCN before the >> database's SCN, and that could make Capture go looking in the >> archlogs. To determine when it's cool to nuke an archlog query >> DBA_REGISTERED_ARCHIVED_LOG where column PURGEABLE = 'YES'. RMAN and >> Streams work with this view. >>
Copyright (c) 1982, 2005, Oracle. All Rights Reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production
With the Partitioning, OLAP and Data Mining options
SQL> SELECT table_name
2 FROM dba_tab_columns
3 WHERE column_name = 'PURGEABLE';
TABLE_NAME
-- Daniel A. Morgan University of Washington damorgan_at_x.washington.edu (replace x with u to respond) Puget Sound Oracle Users Group www.psoug.orgReceived on Wed May 02 2007 - 10:37:25 CDT
![]() |
![]() |