Oracle错误 ORA-01950 对表空间quot;systemquot;无权限
问题:在scott下建表,报错 ORA-01950 对表空间"system"无权限
解决方法:
在pl/sql下,登录system的帐号,新建一个sql文件,
输入SQL> grant connect, resource to scott;
这里的scott就是你建表的用户。
之后再登录scott用户下,就可以顺利建表了。