SOLARS AIX LINUX 下移動資料庫檔案到裸裝置
SOLARS AIX LINUX 下移動資料庫檔案到裸裝置
SOLARIS:
SQL> create tablespace test1
2 datafile '/oradata/ora11g/test01.dbf' size 100m ;
Tablespace created.
SQL> create table testpp
2 tablespace test1
3 as
4 select * from dba_users;
Table created.
SQL> alter tablespace
2
SQL>
SQL> alter datafile
2
SQL>
SQL> alter database datafile '/oradata/ora11g/test01.dbf' offline;
Database altered.
SQL> exit
Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
-bash-3.2$ cd /disk
-bash-3.2$ ls -l
total 2
lrwxrwxrwx 1 root root 18 Jun 26 15:51 test01 -> /dev/rdsk/c1t1d0s0
-bash-3.2$ dd if=/oradata/ora11g/test01.dbf of=/disk/test01 bs=1024k
100+1 records in
100+1 records out
-bash-3.2$ sqlplus / as sysdba
SQL*Plus: Release 11.2.0.3.0 Production on Wed Jun 26 16:00:08 2013
Copyright (c) 1982, 2011, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> alter database rename file '/oradata/ora11g/test01.dbf' to '/disk/test01';
Database altered.
SQL> recover datafile '/disk/test01';
Media recovery complete.
SQL> alter database datafile '/disk/test01' online;
Database altered.
SQL> select count(*) from testpp;
COUNT(*)
----------
20
2 datafile '/oradata/ora11g/test01.dbf' size 100m ;
Tablespace created.
SQL> create table testpp
2 tablespace test1
3 as
4 select * from dba_users;
Table created.
SQL> alter tablespace
2
SQL>
SQL> alter datafile
2
SQL>
SQL> alter database datafile '/oradata/ora11g/test01.dbf' offline;
Database altered.
SQL> exit
Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
-bash-3.2$ cd /disk
-bash-3.2$ ls -l
total 2
lrwxrwxrwx 1 root root 18 Jun 26 15:51 test01 -> /dev/rdsk/c1t1d0s0
-bash-3.2$ dd if=/oradata/ora11g/test01.dbf of=/disk/test01 bs=1024k
100+1 records in
100+1 records out
-bash-3.2$ sqlplus / as sysdba
SQL*Plus: Release 11.2.0.3.0 Production on Wed Jun 26 16:00:08 2013
Copyright (c) 1982, 2011, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> alter database rename file '/oradata/ora11g/test01.dbf' to '/disk/test01';
Database altered.
SQL> recover datafile '/disk/test01';
Media recovery complete.
SQL> alter database datafile '/disk/test01' online;
Database altered.
SQL> select count(*) from testpp;
COUNT(*)
----------
20
也可以使用OFFLINE TABLESPACE來做
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7728585/viewspace-764871/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 給oracle新增裸裝置資料檔案(AIX單機)OracleAI
- 更改資料庫裸裝置資料檔案的位置資料庫
- raw 裸裝置資料檔案更改其他raw裸裝置位置
- 三、rman 資料庫遷移--從檔案系統到裸裝置資料庫
- 利用rman遷移裸裝置資料檔案到檔案系統
- 基於裸裝置檔案格式安裝oracle資料庫Oracle資料庫
- 建立資料庫時用裸裝置的配置檔案資料庫
- linux下表空間檔案系統移動到裸裝置測試Linux
- ORACLE中裸裝置資料檔案RESIZE/AUTOEXTEND ONOracle
- 三、rman 資料庫遷移--從檔案系統到裸裝置 用dd複製控制檔案資料庫
- AIX中的裸裝置AI
- linux下移動裝置的掛載Linux
- 如何遷移裸裝置raw device資料檔案到另一個raw devicedev
- Linux基於裸裝置建庫Linux
- Linux下基於裸裝置建立10g資料庫Linux資料庫
- 用裸裝置與Oracle資料庫的效能Oracle資料庫
- HPUNIX下表空間檔案系統到裸裝置測試
- 建立裸裝置庫
- 用rman更改管理裸裝置檔案
- ORACLE RAC 裸裝置資料庫一節點表空間擴容錯誤新增資料檔案到本地的處理Oracle資料庫
- 裸裝置表空間對映檔案
- linux裸裝置操作Linux
- Linux平臺使用裸裝置作為檔案儲存方式Linux
- 在UNIX裸裝置和檔案系統之間移動ORACLEOracle
- Linux裸裝置總結Linux
- linux下新增裸裝置Linux
- linux下配置裸裝置Linux
- oracle 9i 裸裝置資料檔案損壞的恢復過程Oracle
- oracle將控制檔案從裸裝置遷移到檔案系統Oracle
- 在UNIX裸裝置和檔案系統之間移動ORACLE (轉)Oracle
- 關於裸裝置資料的處理
- linux udev裸裝置繫結Linuxdev
- Linux-建立裸裝置RawLinux
- linux下裸裝置的使用Linux
- Linux裸裝置管理詳解Linux
- Linux裸裝置管理學習Linux
- Linux裸裝置總結(ZT)Linux
- LINUX下裸裝置的操作Linux