博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
更换临时表空间TEMP
阅读量:4347 次
发布时间:2019-06-07

本文共 553 字,大约阅读时间需要 1 分钟。

SQL>

SQL> create temporary tablespace temp2 tempfile '/URP/oracle/oradata/urpjw/temp001.dbf' size 170M;
Tablespace created
SQL> alter database default temporary tablespace temp2;
Database altered
SQL> drop tablespace temp
2 ;
Tablespace dropped
SQL>
SQL>
SQL>
SQL>
SQL> create temporary tablespace temp tempfile '/URP/oracle/oradata/urpjw/temp01.dbf' size 1024M;
Tablespace created
SQL> alter database default temporary tablespace temp;
Database altered
SQL> drop tablespace temp2;
Tablespace dropped

转载于:https://www.cnblogs.com/wu1314421/p/4578732.html

你可能感兴趣的文章
linux工作调度(计划任务)
查看>>
NIO:与 Buffer 一起使用 Channel
查看>>
Android帧缓冲区(Frame Buffer)硬件抽象层(HAL)模块Gralloc的实现原理分析
查看>>
MFC接收ShellExecute多个参数
查看>>
volatile和synchronized的区别
查看>>
类中的静态函数和非静态函数的区别
查看>>
windows 下安装Apache
查看>>
Fedora14 mount出现错误时解决办法【亲测有效】
查看>>
ruby实现生产者和消费者
查看>>
node.js 之 http 架设
查看>>
MongoDB 备份与还原
查看>>
Oracle启动与关闭数据库实例
查看>>
Spring day01
查看>>
hihocoder-1740-替换函数
查看>>
Codeforce Round #219 Div2
查看>>
option value的值可以有空格 再试试吧
查看>>
.htaccess to httpd.conf
查看>>
node.js 基础学习笔记2
查看>>
hadoop中常见元素的解释
查看>>
BZOJ-1497 最大获利
查看>>