日期:2014-05-16  浏览次数:20354 次

oracle中创建用户的步骤
以sysdba登陆。
sqlplus / as sysdba
select username,default_tablespace from dba_users;

创建用户:
其格式为:格式: create user 用户名 identified by 密码 default tablespace 表空间表;

如:SQL> create user testone identified by testone default tablespace test_tablespace;

授权
SQL> grant dba to testone; –表示把 dba权限授予给testone用户授权成功。