select file#,name,status from v$datafile;
select * from v$tablespace;
1. alter tablespace aaa offline;
2. shutdown immediate;
3. copy data file to destination directory
4. startup mount;
alter database rename file 'f:\oracle\oradata\orcl\aaa_01.dbf' to 'h:\oracle\oradata\orcl\aaa_01.dbf';
5. alter database open;
6. alter tablespace aaa online; -- 注意,執行這步的時候有可能會提示io相關的錯誤,原因是資料檔案拷貝過去後,沒有了寫的許可權,解決辦法是重新將這些檔案賦予oracle賬號讀寫許可權。
oracle 遷移資料檔案
步驟 1.sql select file name from dba data files file name d oracle product 10.2.0 oradata test datafile o1 mf users 4yfv39n0 dbf d oracle product 10.2.0...
oracle 遷移資料檔案( 轉)
步驟 1.sql select file name from dba data files file name d oracle product 10.2.0 oradata test datafile o1 mf users 4yfv39n0 dbf d oracle product 10.2.0...
Mysql資料庫遷移 資料檔案直接遷移
mysql資料庫遷移 資料檔案直接遷移 在遷移之前有三種方案 1 資料庫直接匯出,拷貝檔案到新伺服器,在新伺服器上匯入。2 使用 mysql gui tools 中的 mysqlmigrationtool。3 資料檔案和庫表結構檔案直接拷貝到新伺服器,掛載到同樣配置的mysql服務下。我在我的電腦上...