create oracle package encountered PLS-00103: Encountered the symbol “CREATE”

前端 未结 6 1685
名媛妹妹
名媛妹妹 2020-12-15 05:10

I am writing an oracle package using Oracle sql developer, I got this compile error:

Error(7,1): PLS-00103: Encountered the symbol \"CREATE\" .

<
6条回答
  •  不思量自难忘°
    2020-12-15 05:42

    I had this problem (Error(6,1): PLS-00103: Encountered the symbol "/" ) when I coppied all the db package code (both procedures headers and implementations) in sqldeveloper into user/packages/MY_PACKAGE_NAME/MY_PACKAGE_BODY instead of copying headers (without '/' at the end) into user/packages/MY_PACKAGE_NAME and implementation (without headers at the top and without '/' at the end) into user/packages/MY_PACKAGE_NAME/MY_PACKAGE_BODY.

提交回复
热议问题