SendQEntries (Send Queue Entries)
The SendQEntries monitorable property returns a table that shows all log files on the primary database that were not successfully archived to one or more standby databases.
This property pertains to the primary database.
The table contains the following columns:
-
STANDBY_NAMEThe value can be empty or it can contain the database unique name (
DB_UNIQUE_NAME) of a standby database. If empty, theSTATUScolumn will contain a value ofCURRENTorNOT_ARCHIVED. -
STATUSThe
STATUScolumn is set to one of the following values:-
CURRENT: A log file to which online redo is currently being written. -
NOT_ARCHIVED: A completed online redo log file that has not been archived locally. -
ARCHIVED: A completed log file that has been archived locally but has not been transmitted to the standby database specified in theSTANDBY_NAMEcolumn.
The table contains exactly one row with the value of
STATUS=CURRENT. There can be multiple rows with the valueSTATUS=ARCHIVEDorSTATUS=NOT_ARCHIVED. -
-
RESETLOGS_IDResetlogs identifier associated with the archived redo log file
-
THREADThe redo thread number.
-
LOG_SEQThe log sequence number. Multiple rows may have the same
LOG_SEQvalue (for differentSTANDBY_NAMEvalues). -
TIME_GENERATEDThe first time when the online redo log file was written to the primary database.
-
TIME_COMPLETEDThe next time when the log file was archived on the primary database (corresponds to the
NEXT_CHANGE#column). -
FIRST_CHANGE#First change number in the archived redo log file.
-
NEXT_CHANGE#First change in the next log file.
-
SIZE (KBs)The
SIZEof the online redo log file in kilobytes.
For example, the following shows output from a SHOW DATABASE command:
DGMGRL> SHOW DATABASE 'North_Sales' 'SendQEntries' ;
PRIMARY_SEND_QUEUE
STANDBY_NAME STATUS RESETLOGS_ID
THREAD LOG_SEQ TIME_GENERATED TIME_COMPLETED
FIRST_CHANGE# NEXT_CHANGE# SIZE (KBs)
South_Sales ARCHIVED 497198843
1 9 06/20/2003 16:31:59 06/20/2003 16:39:57
210789 211411 186
South_Sales ARCHIVED 497198843
1 10 06/20/2003 16:39:57 06/20/2003 16:40:01
211411 211415 1
South_Sales ARCHIVED 497198843
1 11 06/20/2003 16:40:01 06/20/2003 16:40:07
211415 211418 1
CURRENT 497198843
1 12 06/20/2003 16:40:07
211418 1
Note:
Cloud Control displays this information on the Log File Details page.