oracle更改了l临时表空间大小要重启服务吗
答案:2 悬赏:60 手机版
解决时间 2021-01-23 20:29
- 提问者网友:沦陷
- 2021-01-23 14:58
oracle更改了l临时表空间大小要重启服务吗?
最佳答案
- 五星知识达人网友:慢性怪人
- 2021-01-23 15:28
那只有曲线救国了,先建立一个中转临时表空间,删除原临时表空间,然后在建回来,建的时候把表空间初始值调小
列:
建立一个中转临时表空间:
1,>create temporary tablespace temp2
tempfile 'D:\oracle\oradata\test\temp2.dbf' size 512M
reuse autoextend on next 100M maxsize 2048M;
2, >alter database default temporary tablespace temp2;
3, >drop tablespace temp including contents and datafiles;
重新建立一个新的临时表空间:
1, >create temporary tablespace temp
tempfile 'D:\oracle\oradata\test\temp01.dbf' size 512M
reuse autoextend on next 100M maxsize 1024M;
2, >alter database default temporary tablespace temp;
3, >drop tablespace temp2 including contents and datafiles;
一切OK!
列:
建立一个中转临时表空间:
1,>create temporary tablespace temp2
tempfile 'D:\oracle\oradata\test\temp2.dbf' size 512M
reuse autoextend on next 100M maxsize 2048M;
2, >alter database default temporary tablespace temp2;
3, >drop tablespace temp including contents and datafiles;
重新建立一个新的临时表空间:
1, >create temporary tablespace temp
tempfile 'D:\oracle\oradata\test\temp01.dbf' size 512M
reuse autoextend on next 100M maxsize 1024M;
2, >alter database default temporary tablespace temp;
3, >drop tablespace temp2 including contents and datafiles;
一切OK!
全部回答
- 1楼网友:春色三分
- 2021-01-23 15:40
你好!
用干的桑叶
仅代表个人观点,不喜勿喷,谢谢。
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯