Oracle7 Server Distributed Systems Volume II: Replicated Data
DBMS_DEFER.datatype_ARG
Purpose
To provide the data that is to be passed to a deferred remote procedure call. For additional information, refer to .
Syntax
Depending upon the type of the data that you need to pass to the procedure, you need to call one of the following procedures in the DBMS_DEFER package for each argument to the procedure:
DBMS_DEFER.NUMBER_ARG(arg IN NUMBER);
DBMS_DEFER.DATE_ARG(arg IN DATE);
DBMS_DEFER.VARCHAR2_ARG(arg IN VARCHAR2);
DBMS_DEFER.CHAR_ARG(arg IN CHAR);
DBMS_DEFER.ROWID_ARG(arg IN ROWID);
DBMS_DEFER.RAW_ARG(arg IN RAW);
Parameter
| Description
|
arg
| The value of the parameter that you want to pass to the remote procedure to which you previously deferred a call.
|
Exception
| Description
|
ORA-23323
| The argument value is too long.
|
Table 12 - 6. Exception for VARCHAR2/CHAR/RAW_ARG