欢迎投稿

今日深度:

如何创建Oracle用户?,创建Oracle用户?

如何创建Oracle用户?,创建Oracle用户?


使用具有 DBA 权限的 Linux 用户登陆 Oracle 服务器

sqlplus / as sysdba

create user {userName} identified by {password} default tablespace {tablespaceName} temporary tablespace {temporaryName} profile DEFAULT;

grant dba to {username};

commit;

userName: 用户名

password: 密码

tablespaceName: 表空间,比如 FEEL

temporaryName: 临时表空间,比如 TEMP

www.htsjk.Com true http://www.htsjk.com/oracle/24295.html NewsArticle 如何创建Oracle用户?,创建Oracle用户? 使用具有 DBA 权限的 Linux 用户登陆 Oracle 服务器 sqlplus / as sysdba create user {userName} identified by {password} default tablespace {tablespaceName} temporary tablespace {t...
评论暂时关闭