Oracle® Database PL/SQL Packages and Types Reference 11g Release 2 (11.2) Part Number E10577-04 |
|
|
View PDF |
The DBMS_CQ_NOTIFICATION
package is part of the database change notification feature that provides the functionality to create registration on queries designated by a client application and so to receive notifications in response to DML or DDL changes on the objects associated with the queries. The notifications are published by the database when the DML or DDL transaction commits.
See Also:
Oracle Database Advanced Application Developer's Guide regarding implementing database change notification.This chapter contains the following topics:
Overview
Security Model
Constants
Operational Notes
Examples
OBJECT Types
The DBMS_CQ_NOTIFICATION
package provides PL/SQL based registration interfaces. A client can use this interface to create registrations on queries based on objects of interest and specify a PL/SQL callback handler to receive notifications. In case of object level registration, when a transaction changes any of the objects associated with the registered queries and |COMMIT|s, the PL/SQL callback, specified during registration for those objects, is invoked. The application can define client-specific processing inside the implementation of its PL/SQL callback handler.
The interface lets you define a registration block (using a mechanism similar to a BEGIN-END
block). The recipient of notifications namely the name of the PL/SQL callback handler and a few other registration properties like time-outs can be specified during the BEGIN phase. Any queries executed subsequently (inside the registration block) are considered "interesting queries" and objects referenced by those queries during query execution are registered. The registration is completed by END
ing the registration block.The registration block lets you create new registrations or add objects to existing registrations.
When a registration is created through the PL/SQL interface, a unique registration ID is assigned to the registration by the RDBMS. The client application can use the registration ID to keep track of registrations created by it. When a notification is published by the RDBMS, the registration ID will be part of the notification.
Typical Applications
This functionality is useful for example to applications that cache query result sets on mostly read-only objects in the mid-tier to avoid network round trips to the database. Such an application can create a registration on the queries it is interested in caching. On changes to objects referenced inside those queries, the database publishes a notification when the underlying transaction commits. In response to the notification, the mid-tier application can refresh its cache by re-executing the query/queries.
The DBMS_CQ_NOTIFICATION
package requires that the user have the CHANGE
NOTIFICATION
system privilege in order to receive notifications, and be granted EXECUTE
privilege on the DBMS_CQ_NOTIFICATION
package.
In addition the user is required to have SELECT
privileges on all objects to be registered. Note that if the SELECT
privilege on an object was granted at the time of registration creation but lost subsequently (due to a revoke), then the registration will be purged and a notification to that effect will be published.
The DBMS_CQ_NOTIFICATION
package uses the constants shown in Table 36-1. The constants are used as flag parameters either during registration or when received during the notification.
The DBMS_CQ_NOTIFICATION
package has sets of constants:
EVENT_STARTUP
, EVENT_SHUTDOWN
, EVENT_SHUTDOWN_ANY
, EVENT_DEREG
describe the type of the notification published by the database.
INSERTOP
, DELETEOP
, UPDATEOP
, ALTEROP
, DROPOP
and UNKNOWNOP
describe the type of operation on a table (during a notification published by the database).
QOS_RELIABLE
, QOS_DEREG_NFY
, QOS_ROWIDs
describe registration Quality of Service properties that the client requires. These are specified during registration.
Table 36-1 DBMS_CQ_NOTIFICATION Constants
Name | Type | Value | Description |
---|---|---|---|
|
|
|
Interested in being notified on all operations, specified as a parameter during registration |
|
|
|
All rows within the table may have been potentially modified |
|
|
|
Instance startup notification |
|
|
|
Instance shutdown notification |
|
|
|
Any instance shutdown when running RAC |
|
|
|
Registration has been removed |
|
|
|
Notification for object change |
|
|
|
Notification for query result set change |
|
|
|
Insert operation |
|
|
|
Update operation |
|
|
|
Delete operation |
|
|
|
Table altered |
|
|
|
Table dropped |
|
|
|
Unknown operation |
|
|
|
Reliable or persistent notification. Also implies that the notifications will be inserted into the persistent storage atomically with the committing transaction that results in an object change. |
|
|
|
Purge registration on first notification |
|
|
|
Require rowids of modified rows |
|
|
|
Register at query granularity |
|
|
|
Best effort evaluation |
|
|
|
Group notifications by time |
|
|
|
Summary grouping of notifications |
|
|
|
Last notification in the group |
|
|
|
Repeat notifications forever |
With regard to object level registration:
The notifications are published by the database when a transaction changes the registered objects and COMMIT
s.
All objects referenced in the queries executed inside the registration block starting from the previous NEW_REG_START
or ENABLE_REG
to REG_END
are considered interesting objects and added to the registration.
With regard to query result change registration:
The notifications are published by the database when a transaction changes the result set of the registered query and COMMIT
s.
Troubleshooting
If you have created a registration and seem to not receive notifications when the underlying tables are changed, please check the following.
Is the job_queue_processes
parameter set to a nonzero value? This parameter needs to be configured to a nonzero value in order to receive PL/SQL notifications through the handler.
Are the registrations being created as a non-SYS
user?
If you are attempting DML changes on the registered object, are you COMMIT
ing the transaction? Please note that the notifications are transactional and will be generated when the transaction COMMIT
s.
It maybe possible that there are run-time errors during the execution of the PL/SQL callback due to implementation errors. If so, they would be logged to the trace file of the JOBQ
process that attempts to execute the procedure. The trace file would be usually named <ORACLE_SID
>_j*_
<PID
>.trc
. '
For example, if the ORACLE_SID is 'dbs1' and the process is 12483, the trace file might be named 'dbs1_j000_12483
.trc
.
Suppose a registration is created with 'chnf_callback
as the notification handler and with registration_id
100. Let us suppose the user forgets to define the chnf_callback
procedure. Then the JOBQ
trace file might contain a message of the following form.
Runtime error during execution of PL/SQL cbk chnf_callback for reg CHNF100 Error in PLSQL notification of msgid: Queue : Consumer Name : PLSQL function :chnf_callback Exception Occured, Error msg: ORA-00604: error occurred at recursive SQL level 2 ORA-06550: line 1, column 7: PLS-00201: identifier 'CHNF_CALLBACK' must be declared ORA-06550: line 1, column 7: PL/SQL: Statement ignored
See Also:
For more information about troubleshooting Database Change Notification, see Oracle Database Advanced Application Developer's Guide.Object Change Registration Example
Suppose that a mid-tier application has a lot of queries on the HR
.EMPLOYEES
table. If the EMPLOYEES
table is infrequently updated, it can obtain better performance by caching rows from the table because that would avoid a round-trip to the backend database server and server side execution latency. Let us assume that the application has implemented a mid-tier HTTP listener that listens for notifications and updates the mid-tier cache in response to a notification.
The DBMS_CQ_NOTIFICATION
package can be utilized in this scenario to send notifications about changes to the table by means of the following steps:
Implement a mid-tier listener component of the cache management system (for example, using HTTP) that listens to notification messages sent from the database and refreshes the mid-tier cache in response to the notification.
Create a server side stored procedure to process notifications
CONNECT system; Enter password: password GRANT CHANGE NOTIFICATION TO hr; GRANT EXECUTE ON DBMS_CQ_NOTIFICATION TO hr; Rem Enable job queue processes to receive notifications. ALTER SYSTEM SET "job_queue_processes"=2; CONNECT hr; Enter password: password Rem Create a table to record notification events CREATE TABLE nfevents(regid number, event_type number); Rem create a table to record changes to registered tables CREATE TABLE nftablechanges(regid number, table_name varchar2(100), table_operation number); Rem create a table to record rowids of changed rows. CREATE TABLE nfrowchanges(regid number, table_name varchar2(100), row_id varchar2(30)); Rem Create a PL/SQL callback handler to process notifications. CREATE OR REPLACE PROCEDURE chnf_callback(ntfnds IN SYS.CHNF$_DESC) IS regid NUMBER; tbname VARCHAR2(60); event_type NUMBER; numtables NUMBER; operation_type NUMBER; numrows NUMBER; row_id VARCHAR2(20); BEGIN regid := ntfnds.registration_id; numtables := ntfnds.numtables; event_type := ntfnds.event_type; INSERT INTO nfevents VALUES(regid, event_type); IF (event_type = DBMS_CQ_NOTIFICATION.EVENT_OBJCHANGE) THEN FOR i IN 1..numtables LOOP tbname := ntfnds.table_desc_array(i).table_name; operation_type := ntfnds.table_desc_array(I). Opflags; INSERT INTO nftablechanges VALUES(regid, tbname, operation_type); /* Send the table name and operation_type to client side listener using UTL_HTTP */ /* If interested in the rowids, obtain them as follows */ IF (bitand(operation_type, DBMS_CQ_NOTIFICATION.ALL_ROWS) = 0) THEN numrows := ntfnds.table_desc_array(i).numrows; ELSE numrows :=0; /* ROWID INFO NOT AVAILABLE */ END IF; /* The body of the loop is not executed when numrows is ZERO */ FOR j IN 1..numrows LOOP Row_id := ntfnds.table_desc_array(i).row_desc_array(j).row_id; INSERT INTO nfrowchanges VALUES(regid, tbname, Row_id); /* optionally Send out row_ids to client side listener using UTL_HTTP; */ END LOOP; END LOOP; END IF; COMMIT; END; /
In Step 2 we can send as much information about the invalidation as the mid-tier application needs based on the information obtained from the notification descriptor.
Create a registrations on the tables that we wish to be notified about. We pass in the previously defined procedure name (chnf_callback
) as the name of the server side PL/SQL procedure to be executed when a notification is generated.
Rem Create a REGISTRATION on the EMPLOYEES TABLE DECLARE REGDS SYS.CHNF$_REG_INFO; regid NUMBER; mgr_id NUMBER; dept_id NUMBER; qosflags NUMBER; BEGIN qosflags := DBMS_CQ_NOTIFICATION.QOS_RELIABLE + DBMS_CQ_NOTIFICATION.QOS_ROWIDS; REGDS := SYS.CHNF$_REG_INFO ('chnf_callback', qosflags, 0,0,0); regid := DBMS_CQ_NOTIFICATION.NEW_REG_START (REGDS); SELECT manager_id INTO mgr_id FROM EMPLOYEES WHERE employee_id = 200; DBMS_CQ_NOTIFICATION.REG_END; END; /
Once the registration is created in Step 3 above, the server side PL/SQL procedure defined in Step 2 is executed in response to any COMMIT
ted changes to the HR
.EMPLOYEES
table. As an example, let us assume that the following update is performed on the employees table.
UPDATE employees SET salary=salary*1.05 WHERE employee_id=203;COMMIT;
Once the notification is processed, you will find rows which might look like the following in the nfevents
, nftablechanges
and nfrowchanges
tables.
SQL> SELECT * FROM nfevents; REGID EVENT_TYPE --------------------------- 20045 6 SQL> SELECT * FROM nftablechanges; REGID TABLE_NAME TABLE_OPERATION ------------------------------------------- 20045 HR.EMPLOYEES 4 SQL> select * from nfrowchanges; REGID TABLE_NAME ROW_ID ------------------------------------------------------ 20045 HR.EMPLOYEES AAAKB/AABAAAJ8zAAF
Notes
In the above example, a registration was created on the EMPLOYEES
table with 'chnf_callback
' as the PL/SQL handler for notifications. During registration, the client specified reliable notifications (QOS_RELIABLE
) and rowid notifications (QOS_ROWIDS
)
The handler accesses the table descriptor array from the notification descriptor only if the notification type is of EVENT_OBJCHANGE
. In all other cases (e.g EVENT_DEREG
, EVENT_SHUTDOWN
), the table descriptor array should not be accessed.
The handler accesses the row descriptor array from the table notification descriptor only if the ALL_ROWS
bit is not set in the table operation flag. If the ALL_ROWS
bit is set in the table operation flag, then it means that all rows within the table may have been potentially modified. In addition to operations like TRUNCATE
that affect all rows in the tables, this bit may also be set if individual rowids have been rolled up into a FULL table invalidation.
This can occur if too many rows were modified on a given table in a single transaction (more than 80) or the total shared memory consumption due to rowids on the RDBMS is determined too large (exceeds 1% of the dynamic shared pool size). In this case, the recipient must conservatively assume that the entire table has been invalidated and the callback/application must be able to handle this condition.
Also note that the implementation of the user defined callback is up to the developer. In the above example, the callback was used to record event details into database tables. The application can additionally send the notification details to a mid-tier HTTP
listener of its cache management system (as in the example) using UTL_HTTP
. The listener could then refresh its cache by querying from the back-end database.
Query Result Change Registration Example
Creating a Callback
CONNECT system; Enter password: password GRANT CHANGE NOTIFICATION TO hr; GRANT EXECUTE ON DBMS_CQ_NOTIFICATION TO hr; CONNECT hr; Enter password: password Rem Create a table to record notification events CREATE TABLE nfevents(regid NUMBER, event_type NUMBER); Rem Create a table to record notification queries CREATE TABLE nfqueries (qid NUMBER, qop NUMBER); Rem Create a table to record changes to registered tables CREATE TABLE nftablechanges( qid NUMBER, table_name VARCHAR2(100), table_operation NUMBER); Rem Create a table to record rowids of changed rows. CREATE TABLE nfrowchanges( qid NUMBER, table_name VARCHAR2(100), row_id VARCHAR2(2000)); CREATE OR REPLACE PROCEDURE chnf_callback (ntfnds IN CQ_NOTIFICATION$_DESCRIPTOR) IS regid NUMBER; tbname VARCHAR2(60); event_type NUMBER; numtables NUMBER; operation_type NUMBER; numrows NUMBER; row_id VARCHAR2(2000); numqueries NUMBER; qid NUMBER; qop NUMBER; BEGIN regid := ntfnds.registration_id; event_type := ntfnds.event_type; INSERT INTO nfevents VALUES(regid, event_type); numqueries :=0; IF (event_type = DBMS_CQ_NOTIFICATION.EVENT_QUERYCHANGE) THEN numqueries := ntfnds.query_desc_array.count; FOR i in 1..numqueries LOOP qid := ntfnds.QUERY_DESC_ARRAY(i).queryid; qop := ntfnds.QUERY_DESC_ARRAY(i).queryop; INSERT INTO nfqueries VALUES(qid, qop); numtables := 0; numtables := ntfnds.QUERY_DESC_ARRAY(i).table_desc_array.count; FOR j IN 1..numtables LOOP tbname := ntfnds.QUERY_DESC_ARRAY(i).table_desc_array(j).table_name; operation_type := ntfnds.QUERY_DESC_ARRAY(i).table_desc_array(j).Opflags; INSERT INTO nftablechanges VALUES(qid, tbname, operation_type); IF (bitand(operation_type, DBMS_CQ_NOTIFICATION.ALL_ROWS) = 0) THEN numrows := ntfnds.query_desc_array(i).table_desc_array(j).numrows; ELSE numrows :=0; /* ROWID INFO NOT AVAILABLE */ END IF; /* The body of the loop is not executed when numrows is ZERO */ FOR k IN 1..numrows LOOP Row_id := ntfnds.query_desc_array(i).table_desc_array(j).row_desc_array(k).row_id; INSERT INTO nfrowchanges VALUES(qid, tbname, Row_id); END LOOP; /* loop over rows */ END LOOP; /* loop over tables */ END LOOP; /* loop over queries */ END IF; COMMIT; END; /
Creates a query registration
DECLARE reginfo cq_notification$_reg_info; mgr_id NUMBER; dept_id NUMBER; v_cursor SYS_REFCURSOR; regid NUMBER; BEGIN /* Register two queries for result-set-change notifications: */ /* 1. Construct registration information. 'chnf_callback' is name of notification handler. QOS_QUERY specifies result-set-change notifications. */ reginfo := cq_notification$_reg_info('chnf_callback', DBMS_CQ_NOTIFICATION.QOS_QUERY,0, 0, 0); /* 2. Create registration */ regid := DBMS_CQ_NOTIFICATION.NEW_REG_START(reginfo); OPEN v_cursor FOR SELECT DBMS_CQ_NOTIFICATION.CQ_NOTIFICATION_QUERYID, manager_id FROM HR.employees WHERE employee_id = 7902; CLOSE v_cursor; OPEN v_cursor for SELECT dbms_cq_notification.CQ_NOTIFICATION_QUERYID, department_id FROM HR.departments WHERE department_name = 'IT'; CLOSE v_cursor; DBMS_CQ_NOTIFICATION.REG_END; END; /
After creating the query registrations, the output from USER_CQ_NOTIFICATION_QUERIES
would appear as follows.
SQL> SELECT queryid, regid, to_char(querytext) FROM user_cq_notification_queries; QUERYID REGID ---------- ---------- TO_CHAR(QUERYTEXT) -------------------------------------------------------------------------------- 22 41 SELECT HR.DEPARTMENTS.DEPARTMENT_ID FROM HR.DEPARTMENTS WHERE HR.DEPARTMENTS. DEPARTMENT_NAME = 'IT' 21 41 SELECT HR.EMPLOYEES.MANAGER_ID FROM HR.EMPLOYEES WHERE HR.EMPLOYEES.EMPLOYEE_ ID = 7902 Now, let us perform an UPDATE that changes the result of the query with queryid 22 by renaming the department with name 'IT' to FINANCE. SQL> update departments set department_name = 'FINANCE' where department_name = 'IT'; 1 row updated. SQL> commit; Commit complete. Now we can query the notifications that we recorded in the callback. SQL> select * from nfevents; REGID EVENT_TYPE ---------- ---------- 61 7 Event type 7 corresponds to EVENT_QUERYCHANGE SQL> select * from nfqueries; QID QOP ---------- ---------- 42 7 Event type 7 corresponds to EVENT_QUERYCHANGE SQL> select * from nftablechanges; SQL> select * from nftablechanges; REGID ---------- TABLE_NAME -------------------------------------------------------------------------------- TABLE_OPERATION --------------- 42 HR.DEPARTMENTS 4 TABLE_OPERATION 4 corresponds to UPDATEOP SQL> select * from nfrowchanges; REGID ---------- TABLE_NAME -------------------------------------------------------------------------------- ROW_ID -------------------------------------------------------------------------------- 61 HR.DEPARTMENTS AAANkdAABAAALinAAF
The DBMS_CQ_NOTIFICATION
package defines the following OBJECT
types.
OBJECT Types
This is the top level change notification descriptor type. It is a synonym for the SYS.CHNF$_DESC
type.
Syntax
TYPE SYS.CHNF$_DESC IS OBJECT( registration_id NUMBER, transaction_id RAW(8), dbname VARCHAR2(30), event_type NUMBER, numtables NUMBER, table_desc_array CQ_NOTIFICATION$_TABLE_ARRAY, query_desc_array CQ_NOTIFICATION$_QUERY_ARRAY);
Attributes
Table 36-2 CQ_NOTIFICATION$_DESCRIPTOR Object Type
Attribute | Description |
---|---|
|
Registration ID returned during registration |
|
Transaction ID. |
|
Name of database |
|
Database event associated with the notification. Can be one of |
|
Number of modified tables. Will be |
|
Array of table descriptors. Will be |
|
Array of queries changed. This will be |
The object type describes the changes to a query result caused by an event such as a transaction commit. An array of CQ_NOTIFICATION$_QUERY
descriptors is embedded inside the top level notification descriptor (CQ_NOTIFICATION$_DESCRIPTOR
) for events of type EVENT_QUERYCHANGE
. The array corresponds to the SET
of queryids which were invalidated as a result of the event.
This is a synonym for the base type SYS.CHNF$_QDESC
.
Syntax
TYPE SYS.CHNF$_QDESC IS OBJECT ( queryid NUMBER, queryop NUMBER, table_desc_array CQ_NOTIFICATION$_TABLE_ARRAY);
Attributes
Table 36-3 TYPE SYS.CQ_NOTIFICATION$_QUERY Object Type
Attribute | Description |
---|---|
|
QueryId of the changed query |
|
Operation describing change to the query |
|
Array of table changes which contributed to the query Result Set change |
This type corresponds to an array of CQ_NOTIFICATION$_QUERY
objects. It is a synonym for the SYS.CHNF$_QUERY_ARRAY
type.
Syntax
TYPE CQ_NOTIFICATION$_TABLE_ARRAY IS VARRAY (1073741824) OF CQ_NOTIFICATION$_TABLE;
This descriptor type describes a change to a table and is embedded inside the top level change notification descriptor type for events of type EVENT_OBJCHANGE
For query result set changes (event type will be set to EVENT_QUERYCHANGE
), the array of table descriptors is embedded inside each query change descriptor.
Note that this is a synonym for the type previously named SYS.CHNF$_TDESC
.
Syntax
TYPE SYS.CHNF$_TDESC IS OBJECT ( opflags NUMBER, table_name VARCHAR2(2*M_IDEN+1), numrows NUMBER, row_desc_array CQ_NOTIFICATION$_ROW_ARRAY)
Attributes
Table 36-4 TYPE SYS.CQ_NOTIFICATION$_TABLE Object Type
Attribute | Description |
---|---|
opflags |
Table level operation flags. This is a flag field (bit-vector) that describes the operations that occurred on the table. It can be an |
|
Name of modified table |
|
Number of modified rows within the table. numrows will be |
|
Array of row descriptors. This field will be |
This type corresponds to an array of CQ_NOTIFICATION$_TABLE
objects. It is a synonym for the SYS.CHNF$_TDESC_ARRAY
type.
Syntax
TYPE CQ_NOTIFICATION$_TABLE_ARRAY IS VARRAY (1073741824) OF CQ_NOTIFICATION$_TABLE;
An array of CQ_NOTIFICATION$_ROW
is embedded inside a CQ_NOTIFICATION$_TABLE
(table change descriptor) if the QOS_ROWIDS
option was chosen at the time of registration and the ALL_ROWS
bit is not set in the opflags
field of the table change descriptor.
Note that this is a synonym for the type previously named
SYS.CHNF$_RDESC
.
Syntax
TYPE SYS.CHNF$_RDESC IS OBJECT ( opflags NUMBER, row_id VARCAHR2 (2000));
Attributes
Table 36-5 TYPE SYS.CQ_NOTIFICATION$_ROW Object Type
Attribute | Description |
---|---|
opflags |
Row level operation flags. The flag field (bit vector) describes the operations in the row (could be |
|
The rowid of the modified row |
This object type corresponds to an array of CQ_NOTIFICATION$_ROW
objects and is embedded inside the CQ_NOTIFICATION$_TABLE
if QOS_ROWIDS
was specified during registration and the ALL_ROWS
bit is not set in the opflags
field of the table change descriptor.
This type is a synonym for the SYS.CHNF$_RDESC_ARRAY
type.
Syntax
TYPE CQ_NOTIFICATION$_ROW_ARRAY IS VARRAY (1073741824) OF CQ_NOTIFICATION$_ROW;
The object type describes the attributes associated with creating a new registration. It is a synonym for the type previously named
SYS.CHNF$_REG_INFO
.
Syntax
TYPE SYS.CHNF$_REG_INFO IS OBJECT ( callback VARCHAR2(20), quosflags NUMBER, timeout NUMBER, operations_filter NUMBER, transaction_lag NUMBER, ntfn_grouping_class NUMBER, ntfn_grouping_value NUMBER, ntfn_grouping_type NUMBER, ntfn_grouping_start_time TIMESTAMP WITH TIME ZONE, ntfn_grouping_repeat_count NUMBER);
Attributes
Table 36-6 TYPE CQ_NOTIFICATION$_REG_INFO Object Type
Attribute | Description |
---|---|
|
Name of the server side PL/SQL procedure to be executed on a notification. Prototype is |
|
Quality of service flags. Can be set to an
|
|
If set to a nonzero value, specifies the time in seconds after which the registration is automatically expunged by the database. If zero / |
|
if nonzero, specifies a filter to be selectively notified on certain operations. These flags can be used to filter based on specific operation types:
A combination of operations can be specified by using a bitwise Caution: This parameter will be honored for object level registrations but ignored for query result change registrations. To implement notification flow control in 11g, the applications can use the " |
|
Lag between consecutive notifications in units of transactions. Can be used to specify the number of transactions/database changes, by which the client is willing to lag behind the database. If 0, it means that the client needs to receive an invalidation message as soon as it is generated. Caution: This parameter will be honored for object level registrations but ignored for query result change notification registrations. |
|
When grouping notifications, the class based on which the group is derived. Currently, the only allowed value is |
|
The grouping value. This describes the time interval that defines the group in seconds. For example, if this were set to 900, it would mean that notifications that were generated in each 15 minute interval would be grouped together. |
|
The type of grouping desired. It can be one of two allowed values
|
|
When to start generating notifications. If specified as |
|
How many times the notification should be repeated. Set this to |
Usage Notes
The type declaration incorporates three other alternative constructors. In the first case all other parameters default to their default values.
TYPE CQ_NOTIFICATION$_REG_INFO IS OBJECT ( callback VARCHAR2(20), quosflags NUMBER, timeout NUMBER);
The second option applies to the type constructor defined in a previous release, and which is retained for backward compatibility:
TYPE CQ_NOTIFICATION$_REG_INFO IS OBJECT ( callback VARCHAR2(20), quosflags NUMBER, timeout NUMBER, operations_filter NUMBER, transaction_lag NUMBER);
The third definition contains all the members of the type except transaction_lag
which is being deprecated:
TYPE CQ_NOTIFICATION$_REG_INFO IS OBJECT ( callback VARCHAR2(20), quosflags NUMBER, timeout NUMBER, operations_filter NUMBER, ntfn_grouping_class NUMBER, ntfn_grouping_value NUMBER, ntfn_grouping_type NUMBER, ntfn_grouping_start_time TIMESTAMP WITH TIME ZONE, ntfn_grouping_repeat_count NUMBER);
In response to a database change, the server side PL/SQL procedure specified by "callback" is executed. The PL/SQL procedure name has to be specified in the format s
chema_name.procedure_name
. The procedure must have the following signature:
PROCEDURE <procedure_name>(ntfnds IN SYS.chnf$_desc)
CHNF$_DESC
describes the change notification descriptor.
The init.ora parameter job_queue_processes
must be set to a nonzero value to receive PL/SQL notifications, because the specified procedure is executed inside a job queue process when a notification is generated.
Table 36-7 DBMS_CQ_NOTIFICATION Package Subprograms
Subprogram | Description |
---|---|
Returns the queryid of the most recent query that was attempted to be registered in a registration block |
|
De-subscribes the client with the supplied registration identifier (ID) |
|
Begins a registration block using an existing registration identifier (ID) |
|
Begins a new registration block |
|
Ends the registration boundary |
This function returns the queryid of the most recent query that was attempted to be registered in a registration block.
Syntax
DBMS_CQ_NOTIFICATION.CQ_NOTIFICATION_QUERYID RETURN NUMBER;
Return Values
Returns the queryid of the most recently registered query.
This procedure desubscribes the client with the specified registration identifier (ID).
Syntax
DBMS_CQ_NOTIFICATION.DEREGISTER ( regid IN NUMBER);
Parameters
Usage Notes
Only the user that created the registration (or the SYS
user) will be able to desubscribe the registration.
This procedure adds objects to an existing registration identifier (ID). It is similar to the interface for creating a new registration, except that it takes an existing regid
to which to add objects.Subsequent execution of queries causes the objects referenced in the queries to be added to the specified regid
, and the registration is completed on invoking the REG_END Procedure.
Syntax
DBMS_CQ_NOTIFICATION.ENABLE_REG ( regid IN NUMBER);
Parameters
Usage Notes
Only the user that created the registration will be able to add further objects to the registration.
This procedure begins a new registration block. Any objects referenced by queries executed within the registration block are considered interesting objects and added to the registration. The registration block ends upon calling the REG_END
procedure.
Syntax
DBMS_CQ_NOTIFICATION.NEW_REG_START ( regds IN sys.chnf$_reg_info) RETURN NUMBER;
Parameters
Table 36-10 NEW_REG_START Function Parameters
Parameter | Description |
---|---|
|
Registration descriptor describing the notification handler and other properties of the registration |
Return Values
The procedure returns a registration-id which is a unique integer assigned by the database to this registration. The registration-id will be echoed back in every notification received for this registration.
Usage Notes
The only operations permitted inside a registration block are queries (the ones the user wishes to register). DML and DDL operations are not permitted.
The registration block is a session property and implicitly terminates upon exiting the session. While the registration block is a session property, the registration itself is a persistent database entity. Once created, the registration survives until explicitly deregistered by the client application or timed-out or removed by the database for some other reason (such as loss of privileges).
The user must have the CHANGE NOTIFICATION
system privilege and SELECT
privileges on any objects to be registered.
The SYS
user will not be permitted to create new registrations.
Nesting of registration block is not permitted.
This procedure marks the end of the registration block. No newly executed queries are tracked.
Syntax
DBMS_CQ_NOTIFICATION.REG_END;