oracle - How to execute procedure in APEX SQL script? -
I understand how to use several processes in the APEX SQL script. I do not really need a stored procedure before, but it's not sure how to declare simple processes in APEX SQL scripts. So this is my endeavor:
DBMS_UUTUPT Forming or changing methodology test 1 as the beginning of NABLE; Dbms_output.put_line ('test1'); End; Execute Test 1;
This gives me an error:
Error in line 7: PLS-00103: Symbol "EXECUTE"
< P> Question - How to create regular / not stored / processes in a SQL script and then call them. What does entrepreneurship mean in the APEX SQL script?
UPD (for the first time I completely understand the wrong question )
The correct version of a script:
To create or change the process test1 start DBMS_ OUTPUT. ; Dbms_output.put_line ('test1'); End; Start / Test 1; End; /
Say that script can include SQL and PL / SQL commands.
Older version (Cancel here)
In the APAC pages you have the PL / SQL anonymous block for example, You can create (some types of Apex) or PL / SQL fields, and use the following:
Announce ... start some_proc (: P_MY_ITEM); End;
Here you can apply any process and do anything permitted by PL / SQL. In addition you can use the : P_ITEM_NAME
parameter to get and set the value of the page and app item.
Comments
Post a Comment