本文转自:http://www.cnblogs.com/whgw/archive/2011/10/30.html
一、系统的默认用户 1)sys用户是超级用户,具有最高权限,具有sysdba角色,有create database的权限,该用户默认的密码是sys。 登录语句:SQL> conn sys/sys as sysdba;
2)system用户是管理操作员,权限也很大。具有sysoper角色,没有create database的权限,默认的密码是manager。 登录语句:SQL> conn system/manager;
3)sys和system这两个用户最大的区别是在于有没有create database的权限。
4)scott用户是普通用户,密码默认为tiger,默认未解锁 解锁语句:SQL>alter user scott account unlock; 登录语句:SQL> conn scott/tiger;
二、管理用户
1)在管理员账户下(sys或system)创建用户wanghao :SQL> create user wanghao identified by wh516;
2)修改用户密码:SQL> alter user wanghao identified by whigw;
三、授予权限
1)默认的普通用户scott默认未解锁,新建的用户也没有任何权限,必须通过管理员授予权限。
SQL> grant create session to wanghao; 授予wanghao用户创建session的权限,即登陆权限。 SQL> alter user wanghao quota unlimited on USERS; 授予wanghao用户使用表空间的权限。 SQL> grant create table to wanghao; 授予创建表的权限。 SQL> grant drop any table to wanghao; 授予删除任意表的权限 SQL> grant insert any table to wanghao; 授予向任意表中插入行的权限 SQL> grant update any table to wanghao; 修改任意表中行的权限
2)oralce对权限管理比较严谨,普通用户之间也是默认不能互相访问的,需要互相授权。
SQL> grant select on tableName(emp) to wanghao; 授予wanghao用户查看指定表的权限 SQL> conn wanghao/whigw; SQL> select * from scott.emp; 用户wanghao可以查看用户scott中的表emp;