创建表空间时报ORA-01030错误:

即:ORA-01030:insufficient privileges。

解决办法:

1. 用system登录

SQL>conn system/oracle@orcl;

2. 赋予XXX用户create tablespace权限

SQL>grant create tablespace to XXX;

同理用在建表操作。。。