在单个运行oracle中多个“创建”

时间:2014-05-29 10:29:17

标签: oracle plsql

我必须在oracle 10g中的单个文件中创建多个表,包,序列。

这就是我的做法。

create sequence "test1" start with 1 increment by 1 nomaxvalue
    /
    create sequence "test4" start with 1 increment by 1 nomaxvalue

开始出错

ORA-00933: SQL command not properly ended

当我这样做时

create sequence "test1" start with 1 increment by 1 nomaxvalue;

create sequence "test4" start with 1 increment by 1 nomaxvalue;

错误:

ORA-00911: invalid character

请帮助

0 个答案:

没有答案