oracle ORA-03291: 无效的截断选项 - 缺少 STORAGE 关键字

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/20886341/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-19 02:09:21  来源:igfitidea点击:

ORA-03291: Invalid truncate option - missing STORAGE keyword

sqloracle

提问by santhosha

i have to execute two statements in a sequence. My Statement is as below. I get the above error when i run this.

我必须按顺序执行两个语句。我的声明如下。运行此程序时出现上述错误。

TRUNCATE TABLE MANUAL_LIST_BACKUP
    INSERT INTO MANUAL_LIST_BACKUP AS SELECT * FROM MANUAL_TRANSACTIONS

回答by Simon Nickerson

Separate the two statements with a ;

用 a 分隔两个语句 ;