|
Sybernet / Supplied Procedures Reference
Release 3.00 Oct 14, 2002 |
|
This application program recompiles all invalid objects in the current schema. It loops until all objects that can be compiled are compiled.
Procedure SP_RECOMPILE
(
OWNER VARCHAR2
, DEBUG VARCHAR2
) ;
| Parameter | Description |
|---|---|
owner |
Determines what schema is recompiled.
If you are running this through Sybercron to recompile all schemas, leave this blank. |
debug |
Determines what to do if a compilation error occurs.
The default is FALSE. |
The following example illustrates the output of sp_recompile:
SP_RECOMPILE (OWNER=>'HTTP')
Compiling HTTP.EXAMPLE3...
Compiling HTTP.SP_HTML_ADDUSER...
Compiling HTTP.SP_HTML_CRON_MONITOR...
Compiling HTTP.SP_HTML_CRON_REGISTER...
Compiling HTTP.SP_HTML_GRANT...
Compiling HTTP.SP_HTML_HELPTEXT...
Compiling HTTP.SP_HTML_ISQL_NEW...
Compiling HTTP.SP_HTML_LEIBNITZ...
Compiling HTTP.SP_HTML_LOAN_CALCULATOR...
Compiling HTTP.SP_HTML_PREFERENCES_FORM...
Compiling HTTP.SP_HTML_PROCMAN...
Compiling HTTP.SP_HTML_UPLOAD_EXAMPLE_2...
Compiling HTTP.SP_HTML_UPLOAD_EXAMPLE_3...
Compiling HTTP.SP_HTML_UPLOAD_EXAMPLE_4...
Compiling HTTP.SP_HTML_WHITEPAGES...
Compiling HTTP.VI...
End of pass 1 (16 invalid objects and 0 did not compile)
Success!