oracle 10.2.0.3對USER收回CONNECT及RESOURCE

wisdomone1發表於2011-09-23
SQL> conn /as sysdba
已連線。
SQL> create user tt1 identified by system default tablespace users;

使用者已建立。

SQL> grant create session to tt1;

授權成功。

SQL> conn tt1/system
已連線。
SQL> create table t1(a int);
create table t1(a int)
*
第 1 行出現錯誤:
ORA-01031: 許可權不足


SQL> show user
USER 為 "TT1"
SQL> conn /as sysdba
已連線。
SQL> select * from v$version;

BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
PL/SQL Release 10.2.0.3.0 - Production
CORE    10.2.0.3.0      Production
TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
NLSRTL Version 10.2.0.3.0 - Production

SQL>



SQL> conn /as sysdba
已連線。
SQL> grant connect,resource to tt1;

授權成功。

SQL> conn tt1/system
已連線。
SQL> create table t1(a int);

表已建立。

SQL> insert into t1 values(1);

已建立 1 行。

SQL> commit;

提交完成。

SQL> conn /as sysdba
已連線。
SQL> revoke connect,resource from tt1;

撤銷成功。

SQL> conn tt1/system
已連線。
SQL> select * from t1;

         A
----------
         1

SQL> delete from t1;

已刪除 1 行。

SQL> update t1 set a=2;

已更新0行。

SQL> insert into t1 values(10);

已建立 1 行。

SQL> commit;

提交完成。

SQL> select * from t1;

         A
----------
        10

是可以DML的

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-708205/,如需轉載,請註明出處,否則將追究法律責任。

相關文章