有的数据库在使用过程中由于某些操作会导至临时表空间过大,由于临时表空间的工作机制,在作业完成后该部分临时表空间也不会释放。通过重建临时表空间的方法可以解决这个问题,但操作还是有点繁琐。在操作中发现,通过resizetempfile可以释放临时表空间,如果有多个tempfile,通..
分类:
数据库 时间:
2017-11-14 16:32:09
阅读次数:
173
首先明确,表空间与数据文件的关系:Oracle数据库表空间有两种,一种smallfile小文件表空间(默认),另一种bigfile大文件表空间; 默认表空间与数据文件的关系:允许一对多的处理方式,一个表空间可以有多个数据文件,一个数据文件只能存在一个表空间内; 而bigfile表空间,是一对一的关系 ...
分类:
其他好文 时间:
2017-11-13 18:18:43
阅读次数:
175
Why should you back up a duplicated tablespace after a TSPITR is complete?A. The tablespace cannot be duplicated or restored to any point in time afte ...
分类:
其他好文 时间:
2017-11-13 16:53:57
阅读次数:
132
Which of the following Oracle features utilize the undo tablespace? (Choose all that apply)A. Flashback QueryB. Flashback DropC. Flashback TableD. Fla ...
分类:
其他好文 时间:
2017-11-13 16:41:39
阅读次数:
110
In what state are the datafiles of a tablespace after a TSPITR has been successfully completed?A. The datafiles have an ONLINE status.B. The datafiles ...
分类:
其他好文 时间:
2017-11-13 16:31:47
阅读次数:
201
set line xxxx 设置宽度select t.FILE_NAME,t.TABLESPACE_NAME from dba_data_files t where t.TABLESPACE_NAME='XXXXX'通过以下命令设置烈宽后,正常显示。col FILE_NAME format a45c ...
分类:
数据库 时间:
2017-11-11 13:14:25
阅读次数:
180
表空间碎片相关:select tablespace_name, round(sqrt(max(blocks) / sum(blocks)) * (100 / sqrt(sqrt(count(blocks)))), 2) FSFI, (case when sqrt(max(blocks) / sum( ...
分类:
数据库 时间:
2017-11-11 11:29:49
阅读次数:
241
Tablespace SYSAUX grows quickly. Run Oracle script awrinfo.sql to find what is using the space. One section of the report shows that ACTIVE_SESSION_HI ...
分类:
其他好文 时间:
2017-11-11 11:28:37
阅读次数:
248
-- Create the user create user lesdba identified by les_321 default tablespace USERS temporary tablespace TEMP profile DEFAULT password expire;-- Gran ...
分类:
其他好文 时间:
2017-11-10 21:44:30
阅读次数:
176
You have a database with the following tablespaces: SYSTEM, SYSAUX, UNDO, USERS, TEMP.You want to"roll back" the data in the USERS tablespace to the w ...
分类:
其他好文 时间:
2017-11-10 17:01:12
阅读次数:
128