在 plsql 过程中创建表时出错

发布于 2024-11-04 09:16:08 字数 94 浏览 0 评论 0原文

当我在 plsql 过程主体中使用 create 语句时,出现错误 PLS-00103 在预期以下情况之一时遇到符号创建...... 有人可以告诉我这是什么原因和解决方案吗?

When i used the create statement with in the body of the plsql procedure i am getting an error
PLS-00103 encountered the symbol create when expecting one of the following....
Can somebody tell me what's the reason and solution for this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光无声 2024-11-11 09:16:08

在PL/SQL中不能直接使用DDL语句。您可以

  • 使用:
    立即执行“创建”|| 'your command' 作为字符串。

  • 使用SYS.DBMS_SQL系统包。
    curs := dbms_sql.open_cursor
    dbms_sql.parse(curs, '创建...')
    dbms_sql.execute(curs)
    dbms_sql.close_cursor ( curs )

  • 如果要创建包装过程,请使用 SYS.DBMS_DDL。

In PL/SQL you cannot use DDL statement directly. You can either

  • use:
    EXECUTE IMMEDIATE 'CREATE ' || 'your command' as a string.

  • use the SYS.DBMS_SQL system package.
    curs := dbms_sql.open_cursor
    dbms_sql.parse ( curs, 'create ...' )
    dbms_sql.execute ( curs )
    dbms_sql.close_cursor ( curs )

  • use SYS.DBMS_DDL if you want to create a wrapped procedure.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文