连接到:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the OLAP and Data Mining options

SQL> conn as sysDBA
请输入用户名:  system
输入口令: *****
已连接。
SQL> create tablespace test datafile 'D:\oracle\kkk\test.dbf' size 50M autoextend on next 50M;

表空间已创建。

SQL> create user test identified by test default tablespace test;

用户已创建。

SQL> grant connect,resource to test;

授权成功。

SQL>