首先以DBA连接到数据库:sqlplus / as sysdba; --创建表空间 create tablespace test_tablespace datafile 'D:\developer\oracle\product\10.2.0\oradata\orcl\test.dbf' size 1024M;--创建用户 create user test identified by test default tablespace test_tablespace;--授权 grant dba,co…