oracle归档和非归档模式的区别和优缺点
问题描述:
oracle归档和非归档模式之间有不同地方?它们各自的优缺点是什么? 如何开启oracle归档?
解决方案:
归档模式可以备份所有的数据库 transactions并恢复到任意一个时间点。
非归档模式则相反,不能恢复到任意一个时间点。但是非归档模式可以带来数据库性能上的少许提高.
在生产环境,一定使用归档模式,并备好RMAN备份。
SQL> archive log list;
Database log mode No Archive Mode
Automatic archival Disabled
Archive destination USE_DB_RECOVERY_FILE_DEST
Oldest online log sequence 63
Current log sequence 65
SQL> shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup mount;
ORACLE instance started.
Total System Global Area 422670336 bytes
Fixed Size 1365068 bytes
Variable Size 301992884 bytes
Database Buffers 113246208 bytes
Redo Buffers 6066176 bytes
Database mounted.
SQL> alter database archivelog;
Database altered.
SQL> alter system set log_archive_dest_1='location=/u01/app/archivelog' scope=both;
System altered.
SQL> alter database open;
例如:
oracle归档和非归档模式的区别和优缺点
本文2024-09-22 20:21:42发表“eas cloud知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-eas-113140.html