ak 发帖数: 512 | 1 How could I excute stored procedure in Oracle under SQL*Plus?
For example: I have an sp_sel_test.sql
SQL> call sp_sel_test
but does not work. what command will work?
By the way, I wrote stored procedure under SQL*Plus, the use / to run. | c*****d 发帖数: 6045 | 2 SQL> execute sp_sel_test
【在 ak 的大作中提到】 : How could I excute stored procedure in Oracle under SQL*Plus? : For example: I have an sp_sel_test.sql : SQL> call sp_sel_test : but does not work. what command will work? : By the way, I wrote stored procedure under SQL*Plus, the use / to run.
| ak 发帖数: 512 | 3 thanks!
【在 c*****d 的大作中提到】 : SQL> execute sp_sel_test
|
|