Oracle® Database Advanced Replication Management API Reference 11g Release 2 (11.2) Part Number E10707-04 |
|
|
PDF · Mobi · ePub |
DBMS_REFRESH
enables you to create groups of materialized views that can be refreshed together to a transactionally consistent point in time.
This chapter contains this topic:
Table 17-1 DBMS_REFRESH Package Subprograms
Subprogram | Description |
---|---|
Adds materialized views to a refresh group. |
|
Changes the refresh interval for a refresh group. |
|
Removes all of the materialized views from a refresh group and deletes the refresh group. |
|
Specifies the members of a refresh group and the time interval used to determine when to refresh the members of this group. |
|
Manually refreshes a refresh group. |
|
Removes materialized views from a refresh group. |
This procedure adds materialized views to a refresh group.
See Also:
Step 6, "Add objects to the refresh group.", and Oracle Database Advanced Replication for more informationDBMS_REFRESH.ADD ( name IN VARCHAR2, { list IN VARCHAR2, | tab IN DBMS_UTILITY.UNCL_ARRAY, } lax IN BOOLEAN := FALSE);
Note:
This procedure is overloaded. Thelist
and tab
parameters are mutually exclusive.Table 17-2 ADD Procedures Parameters
Parameter | Description |
---|---|
name |
Name of the refresh group to which you want to add members, specified as |
list |
Comma-delimited list of materialized views that you want to add to the refresh group. Synonyms are not supported. Each materialized view is specified as |
tab |
Instead of a comma-delimited list, you can supply a PL/SQL associative array of type Each materialized view is specified as |
lax |
A materialized view can belong to only one refresh group at a time. If you are moving a materialized view from one group to another, then you must set the |
This procedure changes the refresh interval for a refresh group.
See Also:
Oracle Database Advanced Replication for more information about refresh groupsDBMS_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);
Table 17-3 CHANGE Procedures Parameters
Parameter | Description |
---|---|
name |
Name of the refresh group for which you want to alter the refresh interval. |
next_date |
Next date that you want a refresh to occur. By default, this date remains unchanged. |
interval |
Function used to calculate the next time to refresh the materialized views in the refresh group. This interval is evaluated immediately before the refresh. Thus, select an interval that is greater than the time it takes to perform a refresh. By default, the interval remains unchanged. |
implicit_destroy |
Allows you to reset the value of the |
rollback_seg |
Allows you to change the rollback segment used. By default, the rollback segment remains unchanged. To reset this parameter to use the default rollback segment, specify |
push_deferred_rpc |
Used by updatable materialized views only. Set this parameter to |
refresh_after_errors |
Used by updatable materialized views only. Set this parameter to |
purge_option |
If you are using the parallel propagation mechanism (that is,
In most cases, lazy purge is the optimal setting. Set purge to aggressive to trim back the queue if multiple master replication groups are pushed to different target sites, and updates to one or more replication groups are infrequent and infrequently pushed. If all replication groups are infrequently updated and pushed, then set purge to do not purge and occasionally execute |
parallelism |
0 specifies serial propagation. n > 1 specifies parallel propagation with n parallel processes. 1 specifies parallel propagation using only one parallel process. |
heap_size |
Maximum number of transactions to be examined simultaneously for parallel propagation scheduling. Oracle automatically calculates the default setting for optimal performance. Note: Do not set this parameter unless directed to do so by Oracle Support Services. |
This procedure removes all of the materialized views from a refresh group and delete the refresh group.
See Also:
Oracle Database Advanced Replication for more information refresh groupsDBMS_REFRESH.DESTROY ( name IN VARCHAR2);
Table 17-4 DESTROY Procedure Parameters
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 to refresh the members of this group.
See Also:
Step 4, "Create the refresh group.", and Oracle Database Advanced Replication for more informationDBMS_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);
Note:
This procedure is overloaded. Thelist
and tab
parameters are mutually exclusive.Table 17-5 MAKE Procedure Parameters
Parameter | Description |
---|---|
name |
Unique name used to identify the refresh group, specified as |
list |
Comma-delimited list of materialized views that you want to refresh. Synonyms are not supported. These materialized views can be located in different schemas and have different master tables or master materialized views. However, all of the listed materialized views must be in your current database. Each materialized view is specified as |
tab |
Instead of a comma-delimited list, you can supply a PL/SQL associative array of names of materialized views that you want to refresh using the data type Each materialized view is specified as |
next_date |
Next date that you want a refresh to occur. |
interval |
Function used to calculate the next time to refresh the materialized views in the group. This field is used with the For example, if you specify |
implicit_destroy |
Set this to |
lax |
A materialized view can belong to only one refresh group at a time. If you are moving a materialized view from an existing group to a new refresh group, then you must set this to |
job |
Needed by the Import utility. Use the default value, 0. |
rollback_seg |
Name of the rollback segment to use while refreshing materialized views. The default, |
push_deferred_rpc |
Used by updatable materialized views only. Use the default value, |
refresh_after_errors |
Used by updatable materialized views only. Set this to 0 if you want the refresh to proceed even if there are outstanding conflicts logged in the |
purge_option |
If you are using the parallel propagation mechanism (in other words, parallelism is set to 1 or greater), then 0 = do not purge; 1 = lazy (default); 2 = aggressive. In most cases, lazy purge is the optimal setting. Set purge to aggressive to trim back the queue if multiple master replication groups are pushed to different target sites, and updates to one or more replication groups are infrequent and infrequently pushed. If all replication groups are infrequently updated and pushed, then set purge to do not purge and occasionally execute |
parallelism |
0 specifies serial propagation. n > 1 specifies parallel propagation with n parallel processes. 1 specifies parallel propagation using only one parallel process. |
heap_size |
Maximum number of transactions to be examined simultaneously for parallel propagation scheduling. Oracle automatically calculates the default setting for optimal performance. Note: Do not set this parameter unless directed to do so by Oracle Support Services. |
This procedure manually refreshes a refresh group.
See Also:
Oracle Database Advanced Replication for more information about refresh groupsDBMS_REFRESH.REFRESH ( name IN VARCHAR2);
Table 17-6 REFRESH Procedure Parameter
Parameter | Description |
---|---|
name |
Name of the refresh group that you want to refresh manually. |
This procedure removes materialized views from a refresh group.
See Also:
Oracle Database Advanced Replication for more information about refresh groupsDBMS_REFRESH.SUBTRACT ( name IN VARCHAR2, { list IN VARCHAR2, | tab IN DBMS_UTILITY.UNCL_ARRAY, } lax IN BOOLEAN := FALSE);
Note:
This procedure is overloaded. Thelist
and tab
parameters are mutually exclusive.Table 17-7 SUBTRACT Procedure Parameters
Parameter | Description |
---|---|
name |
Name of the refresh group from which you want to remove members. |
list |
Comma-delimited list of materialized views that you want to remove from the refresh group. (Synonyms are not supported.) These materialized views can be located in different schemas and have different master tables or master materialized views. However, all of the listed materialized views must be in your current database. |
tab |
Instead of a comma-delimited list, you can supply a PL/SQL associative array of names of materialized views that you want to refresh using the data type |
lax |
Set this to |