10.5.8 sys.rqScriptCreate Procedure
The sys.rqScriptCreate
procedure creates a script and adds it to the OML4R script repository.
Syntax
sys.rqScriptCreate (
V_NAME VARCHAR2 IN
V_SCRIPT CLOB IN
V_GLOBAL BOOLEAN IN DEFAULT
V_OVERWRITE BOOLEAN IN DEFAULT)
Parameter | Description |
---|---|
V_NAME |
A name for the script in the OML4R script repository. |
V_SCRIPT |
The R function definition to store in the script. |
V_GLOBAL |
TRUE specifies that the script is public; FALSE specifies that the script is private.
|
V_OVERWRITE |
If the OML4R script repository already has a script with the same name as , then TRUE replaces the content of that script with V_SCRIPT and does not replace it.
|
Related Topics