在 plsql 过程中创建表时出错
当我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在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.