欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

如何创建Oracle用户?

程序员文章站 2022-04-12 20:23:03
使用具有 DBA 权限的 Linux 用户登陆 Oracle 服务器 sqlplus / as sysdba create user {userName} identified...

使用具有 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