[20230224]改動資料檔案小技巧.txt
[20230224]改動資料檔案小技巧.txt
--//有時候需要resize資料檔案,我一般使用檔名,今天看別人操作可以直接使用檔案號完成,這樣簡單明瞭,不用輸入檔名.減少出錯
--//的機率,測試看看.
--//例子:
alter database tempfile 1 resize 1024M;
alter database tempfile 1 autoextend off;
1.環境:
SYS@book> @ver1
PORT_STRING VERSION BANNER
------------------------------ -------------- --------------------------------------------------------------------------------
x86_64/Linux 2.4.xx 11.2.0.4.0 Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
2.測試:
SYS@book> alter database tempfile 1 autoextend off;
Database altered.
SYS@book> select * from V$TEMPFILE
2 @ pr
==============================
FILE# : 1
CREATION_CHANGE# : 925793
CREATION_TIME : 2015-11-24 09:11:14
TS# : 3
RFILE# : 1
STATUS : ONLINE
ENABLED : READ WRITE
BYTES : 158334976
BLOCKS : 19328
CREATE_BYTES : 20971520
BLOCK_SIZE : 8192
NAME : /mnt/ramdisk/book/temp01.dbf
PL/SQL procedure successfully completed.
--//158334976/1024/1024 = 151M.
SYS@book> alter database tempfile 1 resize 500M;
Database altered.
SYS@book> select * from V$TEMPFILE
2 @ pr
==============================
FILE# : 1
CREATION_CHANGE# : 925793
CREATION_TIME : 2015-11-24 09:11:14
TS# : 3
RFILE# : 1
STATUS : ONLINE
ENABLED : READ WRITE
BYTES : 524288000
BLOCKS : 64000
CREATE_BYTES : 20971520
BLOCK_SIZE : 8192
NAME : /mnt/ramdisk/book/temp01.dbf
PL/SQL procedure successfully completed.
--//修改回來.
SYS@book> alter database tempfile 1 resize 151M;
Database altered.
--//測試改動資料檔案可以嗎?測試如下:
SYS@book> alter database datafile 4 resize 380M;
Database altered.
--//OK沒有問題.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2936975/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- embed小技巧-動態檔案更新
- [20230224]bbed設定偏移技巧.txt
- 改變資料檔案的路徑
- [20130104]快速移動資料檔案.txt
- [20221014]資料檔案2的小疑問.txt
- Python提取文字檔案(.txt)資料的方法Python
- oracle資料庫移動資料檔案、日誌檔案和控制檔案Oracle資料庫
- win10系統txt檔案怎麼改屬性_win10 txt檔案如何更改屬性Win10
- Git 小技巧:忽略某些檔案的更改Git
- React Native import 檔案的小技巧React NativeImport
- [20181031]12c 線上移動資料檔案.txt
- SQLServer移動資料檔案SQLServer
- 線上移動資料檔案
- ORACLE移動資料檔案Oracle
- [20170221]資料檔案與檔案系統快取.txt快取
- [20171206]最小資料檔案.txt
- oracle中移動控制檔案、資料檔案、日誌檔案Oracle
- MATLAB實戰系列(四)-匯入txt檔案技巧大全Matlab
- [20190410]dg建立臨時表檔案資料檔案.txt
- python如何將資料寫入本地txt文字檔案Python
- [20160329]表空間與資料檔案.txt
- Oracle中移動表 -- 達到縮小資料檔案大小的目的Oracle
- 移動資料檔案從ASM到檔案系統ASM
- 資料檔案丟失的恢復(改變目錄)
- 來改變一下Oracle資料檔案的位置Oracle
- 資料庫系統檔案啟動資料庫資料庫
- openfiledialog 使用 讀取txt檔案 StreamReader 檢驗資料
- 在Oracle中移動資料檔案、控制檔案和日誌檔案Oracle
- python實現將資料夾內所有txt檔案合併成一個檔案Python
- php如何上傳txt檔案,並且讀取txt檔案PHP
- Oracle 資料檔案移動步驟Oracle
- 移動Oracle資料檔案的方法Oracle
- 在Oracle中移動資料檔案Oracle
- 在ORACLE移動資料庫檔案Oracle資料庫
- [20230224]ssh date執行問題.txt
- 通過移動資料檔案來均衡檔案I/O
- 透過移動資料檔案來均衡檔案I/O
- 12c pdb線上移動資料檔案或者重新命名資料檔案