RAC資料庫將資料檔案建立在本地磁碟
1、節點2:建立測試表空間test,放在本地磁碟
SQL> create tablespace test datafile '/home/oracle/test01.dbf' size 10m;
Tablespace created.
SQL> select name,status from v$datafile;
NAME STATUS
-------------------------------------------------- -------
+DATA/jzh/datafile/system.271.888400945 SYSTEM
+DATA/jzh/datafile/sysaux.272.888400963 ONLINE
+DATA/jzh/datafile/undotbs1.273.888400973 ONLINE
+DATA/jzh/datafile/undotbs2.275.888400999 ONLINE
+DATA/jzh/datafile/users.276.888401003 ONLINE
/home/oracle/test01.dbf ONLINE
6 rows selected.
2、節點2:在test表空間建立表t沒有問題
SQL> create table t tablespace test as select * from dba_objects;
Table created.
3、節點1:能查到表空間test,但建立表失敗
SQL> select name,status from v$datafile;
NAME STATUS
-------------------------------------------------- -------
+DATA/jzh/datafile/system.271.888400945 SYSTEM
+DATA/jzh/datafile/sysaux.272.888400963 ONLINE
+DATA/jzh/datafile/undotbs1.273.888400973 ONLINE
+DATA/jzh/datafile/undotbs2.275.888400999 ONLINE
+DATA/jzh/datafile/users.276.888401003 ONLINE
/home/oracle/test01.dbf ONLINE
6 rows selected.
SQL> create table t1 (id int) tablespace test;
create table t1 (id int) tablespace test
*
ERROR at line 1:
ORA-01157: cannot identify/lock data file 6 - see DBWR trace file
ORA-01110: data file 6: '/home/oracle/test01.dbf'
4、將test表空間offline
RMAN> sql 'alter tablespace test offline';
using target database control file instead of recovery catalog
sql statement: alter tablespace test offline
5、copy檔案到disk group
RMAN> copy datafile '/home/oracle/test01.dbf' to '+DATA/jzh/datafile/test01.dbf';
Starting backup at 15-SEP-15
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=150 instance=jzh2 device type=DISK
channel ORA_DISK_1: starting datafile copy
input datafile file number=00006 name=/home/oracle/test01.dbf
output file name=+DATA/jzh/datafile/test01.dbf tag=TAG20150915T062514 RECID=1 STAMP=890461515
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01
Finished backup at 15-SEP-15
SQL> alter database rename file '/home/oracle/test01.dbf' to '+DATA/jzh/datafile/test01.dbf';
Database altered.
SQL> alter tablespace test online;
Tablespace altered.
6、查詢test表空間位置
SQL> select name,status from v$datafile;
NAME STATUS
-------------------------------------------------- -------
+DATA/jzh/datafile/system.271.888400945 SYSTEM
+DATA/jzh/datafile/sysaux.272.888400963 ONLINE
+DATA/jzh/datafile/undotbs1.273.888400973 ONLINE
+DATA/jzh/datafile/undotbs2.275.888400999 ONLINE
+DATA/jzh/datafile/users.276.888401003 ONLINE
+DATA/jzh/datafile/test01.dbf ONLINE
6 rows selected.
7、節點1:建立測試表t1沒有問題
SQL> create table t1 (id int) tablespace test;
Table created.
SQL> create tablespace test datafile '/home/oracle/test01.dbf' size 10m;
Tablespace created.
SQL> select name,status from v$datafile;
NAME STATUS
-------------------------------------------------- -------
+DATA/jzh/datafile/system.271.888400945 SYSTEM
+DATA/jzh/datafile/sysaux.272.888400963 ONLINE
+DATA/jzh/datafile/undotbs1.273.888400973 ONLINE
+DATA/jzh/datafile/undotbs2.275.888400999 ONLINE
+DATA/jzh/datafile/users.276.888401003 ONLINE
/home/oracle/test01.dbf ONLINE
6 rows selected.
2、節點2:在test表空間建立表t沒有問題
SQL> create table t tablespace test as select * from dba_objects;
Table created.
3、節點1:能查到表空間test,但建立表失敗
SQL> select name,status from v$datafile;
NAME STATUS
-------------------------------------------------- -------
+DATA/jzh/datafile/system.271.888400945 SYSTEM
+DATA/jzh/datafile/sysaux.272.888400963 ONLINE
+DATA/jzh/datafile/undotbs1.273.888400973 ONLINE
+DATA/jzh/datafile/undotbs2.275.888400999 ONLINE
+DATA/jzh/datafile/users.276.888401003 ONLINE
/home/oracle/test01.dbf ONLINE
6 rows selected.
SQL> create table t1 (id int) tablespace test;
create table t1 (id int) tablespace test
*
ERROR at line 1:
ORA-01157: cannot identify/lock data file 6 - see DBWR trace file
ORA-01110: data file 6: '/home/oracle/test01.dbf'
4、將test表空間offline
RMAN> sql 'alter tablespace test offline';
using target database control file instead of recovery catalog
sql statement: alter tablespace test offline
5、copy檔案到disk group
RMAN> copy datafile '/home/oracle/test01.dbf' to '+DATA/jzh/datafile/test01.dbf';
Starting backup at 15-SEP-15
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=150 instance=jzh2 device type=DISK
channel ORA_DISK_1: starting datafile copy
input datafile file number=00006 name=/home/oracle/test01.dbf
output file name=+DATA/jzh/datafile/test01.dbf tag=TAG20150915T062514 RECID=1 STAMP=890461515
channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:01
Finished backup at 15-SEP-15
SQL> alter database rename file '/home/oracle/test01.dbf' to '+DATA/jzh/datafile/test01.dbf';
Database altered.
SQL> alter tablespace test online;
Tablespace altered.
6、查詢test表空間位置
SQL> select name,status from v$datafile;
NAME STATUS
-------------------------------------------------- -------
+DATA/jzh/datafile/system.271.888400945 SYSTEM
+DATA/jzh/datafile/sysaux.272.888400963 ONLINE
+DATA/jzh/datafile/undotbs1.273.888400973 ONLINE
+DATA/jzh/datafile/undotbs2.275.888400999 ONLINE
+DATA/jzh/datafile/users.276.888401003 ONLINE
+DATA/jzh/datafile/test01.dbf ONLINE
6 rows selected.
7、節點1:建立測試表t1沒有問題
SQL> create table t1 (id int) tablespace test;
Table created.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10271187/viewspace-1800138/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- RAC中誤將資料檔案建立在本地盤時的修正
- 【RAC】RAC本地資料檔案遷移至ASM的方法(3)ASM
- 【RAC】RAC本地資料檔案遷移至ASM的方法(2)ASM
- 【RAC】RAC本地資料檔案遷移至ASM的方法(1)ASM
- oracle之 RAC本地資料檔案遷移至ASMOracleASM
- 為rac資料庫增加控制檔案資料庫
- 利用rman將本地資料檔案遷移到asmASM
- RAC資料庫新增ASM磁碟組(1)資料庫ASM
- 如何將資料庫中的資料導成 excel 檔案資料庫Excel
- 建立資料庫檔案-日誌檔案-次要資料庫檔案資料庫
- ORACLE 資料庫 ASM磁碟組上新增控制檔案Oracle資料庫ASM
- python如何將資料寫入本地txt文字檔案Python
- 將ORACLE資料庫資料檔案遷移到其他目錄(ZT)Oracle資料庫
- RAC開啟資料庫歸檔資料庫
- RAC環境下建立本地資料檔案的解決方法
- 資料檔案遷移至其他磁碟組
- 將RAC資料庫更改為不歸檔日誌的模式資料庫模式
- 如何將Azure SQL 資料庫還原到本地資料庫例項中SQL資料庫
- 通過資料庫檔案還原資料庫資料庫
- 資料庫系統檔案啟動資料庫資料庫
- MySql資料庫——檔案MySql資料庫
- 將rac資料庫改為單機資料庫需要修改的引數資料庫
- 資料庫檔案和檔案組資料庫
- EM 12c for cloud : 自助RAC資料庫成功後,資料庫沒有temp資料檔案問題-bug 17429475Cloud資料庫
- 將資料庫從ASM遷移到檔案系統資料庫ASM
- 將資料庫從檔案系統遷移到ASM資料庫ASM
- 移動資料檔案,平衡磁碟負載負載
- Sqlserver資料庫使用 .bak 檔案還原資料庫SQLServer資料庫
- oracle資料庫移動資料檔案、日誌檔案和控制檔案Oracle資料庫
- ORACLE RAC 裸裝置資料庫一節點表空間擴容錯誤新增資料檔案到本地的處理Oracle資料庫
- 織夢資料庫配置檔案-DedeCMS織夢資料庫檔案在哪裡資料庫
- 更改RAC資料庫日誌檔案大小及數量 for ASM資料庫ASM
- 如何將本地資料同步到 shopify 或 shopify 資料同步到本地
- rename備庫資料檔案
- 【資料庫資料恢復】MongoDB資料庫檔案損壞的資料恢復案例資料庫資料恢復MongoDB
- 資料庫學習:在資料庫中存取檔案(轉)資料庫
- 織夢資料庫配置檔案修改資料庫配置方法資料庫
- MongoDB資料庫報錯,資料庫檔案丟失資料恢復案例MongoDB資料庫資料恢復