Oracle10g TEMP 檔案Disk Space Allocation 問題
Temporary segments are most commonly generated during sorting operations such as ORDER BY, GROUP BY, and CREATE INDEX. They are also generated during other
operations such as hash joins or inserts into temporary tables.
CREATE TEMPORARY TABLESPACE temp TEMPFILE
‘C:ORACLEORADATAORA10TEMP01.DBF' SIZE 2G ;
Note: tempfile information is stored in v$tempfile , not in v$datafile ;
A workaround for allocating temp file space at runtime is to preallocate it, just like you do with a datafile. In fact, you first allocate it as a datafile and then drop the tablespace, leaving the file. Finally, you create your temp tablespace reusing the old datafile as a temp file.
-- first create it as a permanent tablespace
-- to force the disk space to be allocated
CREATE TABLESPACE temp
DATAFILE '/ORADATA/PROD/TEMP01.DBF' SIZE 2G;
-- dropping the tablespace does not remove
-- the file from the file system
DROP TABLESPACE temp;
-- the keyword REUSE is needed to use the existing
-- file created in the previous steps
CREATE TEMPORARY TABLESPACE temp
TEMPFILE '/ORADATA/PROD/TEMP01.DBF' SIZE 2G REUSE ;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/35489/viewspace-84982/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 聊聊dba_temp_free_space的allocated_space和free_space
- cannot reclaim 52428800 bytes disk space from 4070572032 limitAIMIT
- Oracle10g刪除資料檔案Oracle
- 磁碟分析管理軟體:Disk Space Analyzer Pro mac版Mac
- 怎麼清理temp資料夾的臨時檔案?Win7系統電腦temp臨時檔案的清理方法Win7
- 檔案路徑問題( ./ 和 ../ 和 @/ )
- Qxlsx庫解析xlsx檔案問題
- 檔案監控效能問題【BUG】
- 檔案上傳常見問題
- win10系統中Temp資料夾是什麼檔案|Temp資料夾可以刪除嗎Win10
- temp是什麼資料夾可以刪除嗎 電腦c盤中temp檔案可以清空刪除嗎
- [20210326]Disk file operations IO與檔案型資料庫.txt資料庫
- hdfs檔案本地許可權問題
- 問題:PCB檔案PADS檢視不了
- [20200225]alert檔案亂碼問題.txt
- PHP flock 檔案鎖的使用問題PHP
- angular版本更新與配置檔案問題Angular
- Java IO 建立檔案解決檔名重複問題Java
- sra檔案下載及解析的問題
- Flutter asset檔案被壓縮的問題Flutter
- 檔案快取是不是有問題啊快取
- 徹底解決Hive小檔案問題Hive
- Laravel 日誌檔案許可權問題Laravel
- 【Django】檔案讀取時路徑問題Django
- [待整理]oracle10g刪除(釋放)資料檔案/表空間流程Oracle
- temp
- PHP 上傳檔案找不到 tmp_name 臨時檔案的問題PHP
- 記一個 FormData 多檔案上傳問題ORM
- mybatis中mapper.xml檔案引數問題MyBatisAPPXML
- PKGBUILD檔案pkgver不允許使用連字元-問題UI字元
- 檔案系統變成RAW問題解決
- [20210622]logrotate清除oracle aud檔案的問題.txtlogrotateOracle
- [提問交流]【小白求助】onethink後臺檔案上傳問題
- display:flex佈局下white-space:nowrap失效問題解決Flex
- 運用Log和Trace檔案排除Oracle Net問題Oracle
- [20180608]asmcmd顯示檔案的日期時間問題ASM
- IE9的大css檔案截斷問題IE9CSS
- 如何使用Python讀取文字檔案並回答問題?Python
- 解決excel開啟.csv檔案亂碼問題Excel