Property | Description |
Parameter type | String |
Syntax | REMOTE_DEPENDENCIES_MODE = { TIMESTAMP | SIGNATURE } |
Default value | TIMESTAMP |
Modifiable | ALTER SESSION, ALTER SYSTEM |
REMOTE_DEPENDENCIES_MODE specifies how Oracle should handle dependencies upon remote PL/SQL stored procedures.
Values:
- TIMESTAMP
The client running the procedure compares the timestamp recorded on the server-side procedure with the current timestamp of the local procedure and executes the procedure only if the timestamps match.
- SIGNATURE
Oracle allows the procedure to execute as long as the signatures are considered safe. This setting allows client PL/SQL applications to be run without recompilation.
Note
1. See Also Oracle Database Advanced Application Developer's Guide for information about the consequences of the settings of this parameter
2. Query for the current value of the parameter
select name, value, isdefault, isses_modifiable, issys_modifiable,
isinstance_modifiable, isdeprecated, description
from v$parameter
where upper(name) = 'REMOTE_DEPENDENCIES_MODE';
NAME | VALUE | IS DEFAULT | ISSES_ MODIFIABLE | ISSYS_ MODIFIABLE | ISINSTANCE_ MODIFIABLE | IS DEPRECATED | DESCRIPTION | |
remote_dependencies_mode | TIMESTAMP | TRUE | TRUE | IMMEDIATE | TRUE | FALSE | remote-procedure-call dependencies mode parameter | |
No comments:
Post a Comment