--创建数据表空间 create tablespace hcm logging datafile 'G:oracleproduct10.2.0oradataorclmydata.dbf' size 50m autoextend on next 10m maxsize 1024m extent management local; --创建用户 create user xiaoming identified by xiaoming default tablespace hcm temporary tablespace temp; --用户授权 grant connect,resource,dba to xiaoming ;