Disk IO 壓測軟體 使用軟體:iometer 測試方式:多台主機做壓測 Storage: NAS 2020B 每一台主機需掛戴要測的遠端磁碟機 透過指令的方式,把要測的主機加進來 Read More
在Oracle10G中,常會使用partition table,好處是要刪除資料可以一次drop掉partition table,但 經過一段時間之後,需要增加partition table,若沒有增加,新的資料常會塞不進去,造成異常狀況。 Read More
Oracle sid and Linux pid 為什麼會Lock呢?因為user在update table的時候,沒有做commit的動作,ORACLE就會把它Lock,而在一次在更改的時候,就會形成Wait狀態。 Read More
Online redo log file: Online Redo log: 1 . 紀錄對資料庫中的資料所作的所有更改(紀錄指令)。 2 . 用來提供恢復機制 3 . 以group為單位,每個group最少一個member(redo log file)。 4 . 至少需要有兩個group 5 . 若為RAC架構,則為多Instance對一個資料庫,redo log 則以thread對應Instance(不會解釋)。 Read More
Linux LVM Create 一、 Fdisk,劃分硬碟 二、 pvcreate,增加硬碟 三、 vgextend,增加vg空間 四、 lvresize,增加lv空間 五、 resize2fs,讓os看得到 Read More
Oracle Reog datafile: Oracle: Oracle 10G Method:Move C5_SYS_DATA_2 to C5_SYS_DATA 縮小空間有兩種方法:(此兩種方法都會把Highwater做移動,所以有辦法縮小空間) 一、 做export/import(本例已做過export/import,所以空間不會改變) 二、 建立新的datafile,把資料move過去,刪除舊的tablespace(此範列) Read More
Export/Import DB 1. 確認空間大小 2. export tablespace,並確認是否要更改路徑 3. create user/grant resource 4. export data 5. import data 範列二: Oracle Data Pump Read More