我必须在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
请帮助