SQL> SELECT * FROM (
2 SELECT sequence#, archived, applied,
3 TO_CHAR(completion_time, 'RRRR/MM/DD HH24:MI') AS completed
4 FROM sys.v$archived_log
5 ORDER BY sequence# DESC)
6 WHERE ROWNUM <= 10
7 /
SEQUENCE# ARCHIVED APPLIED COMPLETED
---------- -------- ------- ----------------
11211 YES NO 2004/09/16 09:30
11210 YES YES 2004/09/16 09:00
11209 YES YES 2004/09/16 08:30
11208 YES YES 2004/09/16 08:00
11207 YES YES 2004/09/16 07:30
11206 YES YES 2004/09/16 07:00
11205 YES YES 2004/09/16 06:30
11204 YES YES 2004/09/16 06:30
11203 YES YES 2004/09/16 06:30
11202 YES YES 2004/09/16 06:00
10 rows selected.
Logged operations are replicated. These include, but are not limited to: DDL DML Create/alter table space Create/alter storage group Create/alter buffer pool XML data. Logged LOBs Not logged operations are not replicated. These include, but are not limited to: Database configuration parameters (this allows primary and standby databases to be configured differently). "Not logged initially" tables Not logged LOBs UDF (User Defined Function) libraries. UDF DDL is replicated. But the libraries used by UDF (such as C or Java libraries) are not replicated, because they are not stored in the database. Users must manually copy the libraries to the standby. Note: You can use database configuration parameter BLOCKNONLOGGED to block not logged operations on the primary.
Comments