Oracle Database-03-创建表空间和用户

1.查看当前已存在的表空间

1.1表空间

select * from dba_tablespaces;

Oracle Database-03-创建表空间和用户_第1张图片】、

 1.2表空间所在路径

select * from dba_data_files;

Oracle Database-03-创建表空间和用户_第2张图片

 3.用户

select * from dba_users;

2.创建表空间

--用户表空间
create tablespace apps_data_tablespace
datafile '/usr/local/oracle19c/oradata/ORCL/APPS_DATA_TABLESPACE.dbf'
size 200m
autoextend on next 8m maxsize 1024m
permanent
extent management local;
--索引表空间
create tablespace apps_idx_tablespace
datafile '/usr/local/oracle19c/oradata/ORCL/APPS_IDX_TABLESPACE.dbf'
size 200m
autoextend on next 8m maxsize 1024m
permanent
extent management local;
--临时表表空间

create temporary  tablespace apps_tmp_tablespace
tempfile '/usr/local/oracle19c/oradata/ORCL/APPS_TMP_TABLESPACE.dbf'
size 200m;

 创建完成后我们可以看到生成了对应了dfb文件

Oracle Database-03-创建表空间和用户_第3张图片

 参考链接:

CREATE TABLESPACE

Oracle临时表空间 - FREE教程

Oracle创建表空间 - FREE教程

3.创建用户并授权

create user apps--用户名
  identified by "apps"--密码
  default tablespace apps_data_tablespace--表空间名
  temporary tablespace apps_tmp_tablespace --临时表空间名
  quota unlimited on USERS--表空间无限制
  profile DEFAULT    --数据文件(默认数据文件)
  account unlock;-- 账户是否解锁(lock:锁定、unlock解锁)
  grant connect,resource,dba to apps;

 赋权后,发现在package里无法访问数据字典表,而用

grant select on sys.dba_objects to apps

又太繁琐,因此直接使用下列授权语句

grant select any dictionary to apps;

4.使用APPS用户登录

完成。

你可能感兴趣的:(oracle,oracle,database,sql)