环境:Oracle 11g R2 + SQLPlus 问题:创建用户,创建表时出现ORA-01950错误对表空间system无权限 解决:出现这个问题,很显然的是权限问题。在创建用户后,授予权限不正确。 方法一: 打开SQL Plus------------执行以下命令: [sql] view plaincopyprint?con
环境:Oracle 11g R2 + SQLPlus
问题:创建用户,创建表时出现ORA-01950错误对表空间"system"无权限
解决:出现这个问题,很显然的是权限问题。在创建用户后,授予权限不正确。
方法一:
打开SQL Plus------------>执行以下命令:
[sql] view plaincopyprint?conn system/manager;
grant resource to tiger;
conn system/manager;
grant resource to tiger;
说明:授予权限不一定是tiger,这里是举例。实际应该是你新创建的用户。
方法二:
打开SQL Plus------------>执行以下命令:
conn scott/tiger as sysdba;
说明:在用户连接时就让此用户拥有sysdba的权限,当然创建表不在话下。不会再报这个错误。
Statement: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