Oracle 创建用户详解(create user)

时间:2024-10-21 08:27:38

文章目录

  • 1 概述
  • 2 语法
    • 2.1 创建
    • 2.2 查询
    • 2.3 删除
  • 3 扩展
    • 3.1 表空间

1 概述

创建用户
create user 用户名 identified by 密码;
DBA 用户执行
默认表空间:users
建议指定 表空间
默认临时表空间:temp

2 语法

2.1 创建

-- DBA 用户执行,默认 users 表空间(不推荐)
create user <username> identified by <password>;

-- 实际开发中
create user <username> identified by <password> 
default tablespace <tablespace_name> -- 默认表空间
temporary tablespace temp -- 临时表空间
quota unlimited on <tablespace_name> -- 表空间额度

grant create session to <username>; -- 授权(可以登录)

示例:创建用户 zhangsan 密码 12345,表空间 TESTTBS

create user zhangsan identified by 12345
default tablespace TESTTBS
temporary tablespace temp 
quota unlimited on TESTTBS;

grant create session TO zhangsan;

登录成功:
在这里插入图片描述

2.2 查询

select * 
  from dba_users t 
 where t.username = 'ZHANGSAN';

查询截图:
在这里插入图片描述

2.3 删除

-- zhangsan 必须已断开连接
drop user zhangsan cascade;

3 扩展

3.1 表空间

-- 创建
create tablespace TESTTBS -- 区分大小写
datafile 'E:\TableSpace\' size 10m;

-- 查询表空间
select * 
  from dba_tablespaces t 
  where t.tablespace_name = 'TESTTBS';

-- 查询数据文件
select * 
  from dba_data_files t 
 where t.tablespace_name = 'TESTTBS';

扩展:Oracle 表空间详解(tablespace)