oracle怎么修改临时表空间

2023年 4月 15日 90.0k 0

方法:1、用“drop tablespace temp including contents and datafiles”删除原来的临时表空间;2、用“create temporary tablespace”语句创建新的临时表空间。 本教程操作环境:Windows10系统、Oracle 11g版、

方法:1、用“drop tablespace temp including contents and datafiles”删除原来的临时表空间;2、用“create temporary tablespace”语句创建新的临时表空间。

本教程操作环境:Windows10系统、Oracle 11g版、Dell G3电脑。

oracle怎么修改临时表空间

--查询当前数据库默认临时表空间名

select * from database_properties where property_name='DEFAULT_TEMP_TABLESPACE';

--创建新的临时表空间

create temporary tablespace temp01 tempfile '/oradata/temp01.dbf' size 2G autoextend on;

--修改默认表空间为新建的临时表空间

alter database default temporary tablespace temp01;

--查看用户当前使用的临时表空间

select username,temporary_tablespace from dba_users;

--删除原来的临时表空间

drop tablespace temp including contents and datafiles;

--查看所有表空间名确认临时表空间是否已删除

select tablespace_name from dba_tablespaces;

扩展:

--临时表空间添加数据文件

alter tablespace temp01 add tempfile '/oradata/temp02.dbf' size 2G autoextend on;

--修改临时表空间数据文件大小

alter database tempfile '/oradata/temp02.dbf' resize 4G;

推荐教程:《Oracle视频教程》

以上就是oracle怎么修改临时表空间的详细内容,更多请关注每日运维其它相关文章!

相关文章

Oracle如何使用授予和撤销权限的语法和示例
Awesome Project: 探索 MatrixOrigin 云原生分布式数据库
下载丨66页PDF,云和恩墨技术通讯(2024年7月刊)
社区版oceanbase安装
Oracle 导出CSV工具-sqluldr2
ETL数据集成丨快速将MySQL数据迁移至Doris数据库

发布评论