Oracle创建删除用户实例及用户权限分配
新建用户实例:
首先,使用sys用户登陆sqlplus,然后新建用户名密码均为test的用户,表空间为users
后给test赋resource,connect,dba权限
Cmd代码
[code]
1. D:\>sqlplus /nolog
2.
3. SQL*Plus: Release 9.2.0.1.0 - Production on 星期二 1月 26 13:34:09 2010
4.
5. Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
6.
7. SQL> conn / as sysdba;
8. 已连接。
9. SQL> create user test identified by test default tablespace users;
10.
11. 用户已创建
12.
13. SQL> grant resource,connect,dba to test;
14.
15. 授权成功。
16.
17. SQL> commit;
18.
19. 提交完成。
20.
21. SQL>
D:\>sqlplus /nolog
SQL*Plus: Release 9.2.0.1.0 - Production on 星期二 1月 26 13:34:09 2010
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
SQL> conn / as sysdba;
已连接。
SQL> create user test identified by test default tablespace users;
用户已创建
SQL> grant resource,connect,dba to test;
授权成功。
SQL> commit;
提交完成。
SQL>
[/code]
删除用户实例:
删除用户后边必须跟cascade,否则失败
Sql代码
[code]
1. SQL> drop user test cascade;
2.
3. 用户已丢弃
4.
5. SQL>
[/code]
SQL> drop user test cascade;
用户已丢弃
SQL>