看看是不是这个原因
SQL> create table tt(id int,name varchar2(10));
表已创建。
SQL> set serveroutput off
SQL> create table t(id int,name varchar2(10));
表已创建。
SQL> set feedback off
SQL> create table t1(id int,name varchar2(10));
SQL> create table t2(id int,name varchar2(10));
SQL> set feedback on
SQL> create table t3(id int,name varchar2(10));
表已创建。
最好安装第三方开发工具,如plsql
developer,然后新建一个sql窗口,复制脚本到窗口,再点击执行图标,就可以创建数据库表,或其它数据库对象了。