A.8 sys.rqScriptCreate Procedure

The sys.rqScriptCreate procedure creates a script and adds it to the Oracle R Enterprise R 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 Oracle R Enterprise R 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 R script repository already has a script with the same name as V_NAME, then TRUE replaces the content of that script with V_SCRIPT and FALSE does not replace it.