Oracle Database 26ai is now availble. If you haven't you downloaded already: Why?
Purpose
Provides programs for starting, stopping, and configuring the Streams capture process.
The source of the captured changes is the redo logs, and the repository for the captured changes is a queue.
AUTHID
CURRENT_USER
Constants
Name
Data Type
Value
infinite
NUMBER
4294967295
Dependencies
DBA_CAPTURE
DBMS_STANDARD
DBMS_ASSERT
DBMS_STREAMS_ADM
DBMS_CAPTURE_ADM_INTERNAL
DBMS_STREAMS_ADM_IVK
DBMS_CAPTURE_ADM_IVK
DBMS_STREAMS_ADM_UTL
DBMS_CAPTURE_SWITCH_ADM
DBMS_STREAMS_ADM_UTL_INVOK
DBMS_CAPTURE_SWITCH_INTERNAL
DBMS_STREAMS_AUTO_INT
DBMS_LOGREP_IMP
DBMS_STREAMS_RPC_INTERNAL
DBMS_LOGREP_UTIL
DBMS_UTILITY
DBMS_LOGREP_UTIL_INVOK
DBMS_XSTREAM_ADM_UTL
DBMS_SHARED_CAPTURE_SWITCH_INTERNAL
DBMS_XSTREAM_GG_ADM
DBMS_SHARE_CAPTURE_IVK
DBMS_XSTREAM_UTL_IVK
Documented
Yes
Exceptions
Error Code
Reason
ORA-25338
inv_sync_capture_proc
ORA-25339
exp_sync_capture
ORA-26678
create_capture_proc
First Available
9.2
Security Model
Owned by SYS with EXECUTE granted to the EXECUTE_CATALOG_ROLE,
OGG_CAPTURE, and XSTREAM_CAPTURE roles.
dbms_capture_adm.alter_capture(
capture_name IN VARCHAR2,
rule_set_name IN VARCHAR2 DEFAULT NULL,
remove_rule_set IN BOOLEAN DEFAULT FALSE,
start_scn IN NUMBER DEFAULT NULL,
use_database_link IN BOOLEAN DEFAULT NULL,
first_scn IN NUMBER DEFAULT NULL,
negative_rule_set_name IN VARCHAR2 DEFAULT NULL,
remove_negative_rule_set IN BOOLEAN DEFAULT FALSE,
capture_user IN VARCHAR2 DEFAULT NULL,
checkpoint_retention_time IN NUMBER DEFAULT NULL,
start_time IN TIMESTAMP DEFAULT NULL,
oldest_scn IN NUMBER DEFAULT NULL);
Extracts the current database's data dictionay to the redo logs and aspecifies database supplemental logging for all primary key and unique key columns
Overload 1
dbms_capture_adm.build;
exec dbms_capture_adm.build;
Overload 2
dbms_capture_adm.build(first_scn OUT NUMBER);
-- database must be in archivelog mode
set serveroutput on
DECLARE
scnout NUMBER;
BEGIN
dbms_capture_adm.build(scnout);
dbms_output.put_line(scnout);
END;
/
dbms_capture_adm.create_capture(
queue_name IN VARCHAR2,
capture_name IN VARCHAR2,
rule_set_name IN VARCHAR2 DEFAULT NULL,
start_scn IN NUMBER DEFAULT NULL,
source_database IN VARCHAR2 DEFAULT NULL,
use_database_link IN BOOLEAN DEFAULT FALSE,
first_scn IN NUMBER DEFAULT NULL,
logfile_assignment IN VARCHAR2 DEFAULT 'IMPLICIT',
negative_rule_set_name IN VARCHAR2 DEFAULT NULL,
capture_user IN VARCHAR2 DEFAULT NULL,
checkpoint_retention_time IN NUMBER DEFAULT 60,
start_time IN TIMESTAMP DEFAULT NULL,
source_root_name IN VARCHAR2 DEFAULT NULL,
capture_class IN VARCHAR2 DEFAULT 'streams');
Performs the synchronization necessary for instantiating all the tables in the database at another database and can enable supplemental logging for key columns or all columns in these tables
dbms_capture_adm.prepare_global_instantiation(
supplemental_logging IN VARCHAR2 DEFAULT 'KEYS',
container IN VARCHAR2 DEFAULT 'CURRENT');
SELECT supplemental_log_data_min, supplemental_log_data_pk, supplemental_log_data_ui
FROM v$database;
Performs the synchronization necessary for instantiating all tables in the schema at another database and can enable supplemental logging
dbms_capture_adm.prepare_schema_instantiation(
schema_name IN VARCHAR2,
supplemental_logging IN VARCHAR2 DEFAULT 'KEYS',
container IN VARCHAR2 DEFAULT 'CURRENT');
Performs the synchronization necessary for instantiating the table at another database and can enable supplemental logging for key columns or all columns in the table
dbms_capture_adm.prepare_table_instantiation(
table_name IN VARCHAR2,
supplemental_logging IN VARCHAR2 DEFAULT 'KEYS',
container IN VARCHAR2 DEFAULT 'CURRENT');