PLS-00103: Encountered the symbol “CREATE”

前端 未结 3 1497
再見小時候
再見小時候 2020-12-01 14:09

What is the problem with this package as it is giving an error?

CREATE OR REPLACE PACKAGE PKG_SHOW_CUST_DETAILS 
AS
    PROCEDURE SHOW_CUST_DETAILS( myArg VA         


        
3条回答
  •  一整个雨季
    2020-12-01 14:11

    For me / had to be in a new line.

    For example

    create type emp_t;/

    didn't work

    but

    create type emp_t;

    /

    worked.

提交回复
热议问题