Home > Database > Mysql Tutorial > Oracle错误ORA-01950对表空间"system"无权限解决

Oracle错误ORA-01950对表空间"system"无权限解决

WBOY
Release: 2016-06-07 15:08:26
Original
2036 people have browsed it

环境:Oracle 11g R2 SQLPlus 问题:创建用户,创建表时出现ORA-01950错误对表空间system无权限 解决:出现这个问题,很显然的是权限问题。在创建用户后,授予权限不正确。 方法一: 打开SQL Plus------------执行以下命令: conn system/manager;grant reso

         环境:Oracle 11g R2 + SQLPlus


        问题:创建用户,创建表时出现ORA-01950错误对表空间"system"无权限


        解决:出现这个问题,很显然的是权限问题。在创建用户后,授予权限不正确。

 

         方法一:

         打开SQL Plus------------>执行以下命令:


conn system/manager;
grant resource to tiger;
Copy after login


        说明:授予权限不一定是tiger,这里是举例。实际应该是你新创建的用户。

 

        方法二:


          打开SQL Plus------------>执行以下命令:

 

conn scott/tiger as sysdba;
Copy after login


        说明:在用户连接时就让此用户拥有sysdba的权限,当然创建表不在话下。不会再报这个错误。


        参考资料:http://blog.csdn.net/mainpulate/article/details/7183736




Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template