Oracle8i Supplied PL/SQL Packages Reference Release 2 (8.1.6) Part Number A76936-01 |
|
DBMS_REFRESH, 2 of 2
Subprogram | Description |
---|---|
ADD Procedure |
Adds snapshots to a refresh group. |
CHANGE Procedure |
Changes the refresh interval for a refresh group. |
DESTROY Procedure |
Removes all of the snapshots from a refresh group and deletes the refresh group. |
MAKE Procedure |
Specifies the members of a refresh group and the time interval used to determine when the members of this group should be refreshed. |
REFRESH Procedure |
Manually refreshes a refresh group. |
SUBTRACT Procedure |
Removes snapshots from a refresh group. |
This procedure adds snapshots to a refresh group.
See Also:
Chapter 5, "Create Snapshot Group" in the Oracle8i Replication Management API Reference, and see Chapter 3, "Snapshot Concepts & Architecture" in Oracle8i Replication for more information. |
DBMS_REFRESH.ADD ( name IN VARCHAR2, { list IN VARCHAR2, | tab IN DBMS_UTILITY.UNCL_ARRAY, } lax IN BOOLEAN := FALSE);
This procedure changes the refresh interval for a refresh group.
See Also:
Chapter 3, "Snapshot Concepts & Architecture" in the Oracle8i Replication for more information. |
DBMS_REFRESH.CHANGE ( name IN VARCHAR2, next_date IN DATE := NULL, interval IN VARCHAR2 := NULL, implicit_destroy IN BOOLEAN := NULL, rollback_seg IN VARCHAR2 := NULL, push_deferred_rpc IN BOOLEAN := NULL, refresh_after_errors IN BOOLEAN := NULL, purge_option IN BINARY_INTEGER := NULL, parallelism IN BINARY_INTEGER := NULL, heap_size IN BINARY_INTEGER := NULL);
This procedure removes all of the snapshots from a refresh group and delete the refresh group.
See Also:
Chapter 3, "Snapshot Concepts & Architecture" in the Oracle8i Replication for more information. |
DBMS_REFRESH.DESTROY ( name IN VARCHAR2);
Parameter | Description |
---|---|
name |
Name of the refresh group that you want to destroy. |
This procedure specifies the members of a refresh group and the time interval used to determine when the members of this group should be refreshed.
See Also:
Chapter 5, "Create Snapshot Group" in the Oracle8i Replication Management API Reference, and see Chapter 3, "Snapshot Concepts & Architecture" in Oracle8i Replication for more information. |
DBMS_REFRESH.MAKE ( name IN VARCHAR2 { list IN VARCHAR2, | tab IN DBMS_UTILITY.UNCL_ARRAY,} next_date IN DATE, interval IN VARCHAR2, implicit_destroy IN BOOLEAN := FALSE, lax IN BOOLEAN := FALSE, job IN BINARY INTEGER := 0, rollback_seg IN VARCHAR2 := NULL, push_deferred_rpc IN BOOLEAN := TRUE, refresh_after_errors IN BOOLEAN := FALSE) purge_option IN BINARY_INTEGER := NULL, parallelism IN BINARY_INTEGER := NULL, heap_size IN BINARY_INTEGER := NULL);
This procedure manually refreshes a refresh group.
DBMS_REFRESH.REFRESH ( name IN VARCHAR2);
Parameter | Description |
---|---|
name |
Name of the refresh group that you want to refresh manually. |
This procedure removes snapshots from a refresh group.
DBMS_REFRESH.SUBTRACT ( name IN VARCHAR2, { list IN VARCHAR2, | tab IN DBMS_UTILITY.UNCL_ARRAY, } lax IN BOOLEAN := FALSE);
|
![]() Copyright © 1996-2000, Oracle Corporation. All Rights Reserved. |
|