遠端exp imp,以及imp時改變表空間

2021-06-02 14:56:59 字數 716 閱讀 4139

遠端匯出所需要的oracle資料庫的資料:

需要先在tnsnames.ora裡建立97readdb的選項,與建立dblink前的配置準備工作一樣,不需要建立dblink,而且匯出時用的是遠端oracle的賬戶和密碼。

exp匯出時儲存到本地oracle(或者oracle客戶端)所在的硬碟上。

遠端匯出:

export nls_lang=american_america.zhs16gbk

exp

scott/guantiger@97readdb

owner=scott  file=/data/rman_backup/expscott.dmp log=/data/rman_backup/logscott.log;

本地或者遠端匯入(更換表空間):

imp scott/guantiger  file=/data/rman_backup/expscott.dmp log=/data/rman_backup/logscott02.log fromuser=scott touser=scott tablespaces=testtbs;

imp

scott/guantiger@99sms

file=/data/rman_backup/expscott.dmp log=/data/rman_backup/logscott02.log fromuser=scott touser=scott tablespaces=testtbs;

imp 只匯入索引 EXP IMP 匯入匯出

1,匯入匯出使用者下所有物件及資料 exp fanmeng fanmeng 192.168.12.212 orcl file c fanmeng.dmp imp fanmeng fanmeng 192.168.12.212 orcl file c fanmeng.dmp 2,注意事項 手工建庫需要執...

window 遠端連線Ubuntu以及遠端傳資料

ssh遠端控制電腦 window開啟ssh服務 linux操作 1 檢視是否安裝ftp which vsftpd 沒有安裝使用安裝命令安裝一下 sudo apt get install vsftpd2 檢視ftp 伺服器狀態 service vsftpd status3 啟動ftp伺服器 servi...

SSH遠端登入以及遠端拷貝 Linux

ssh p port user remote scp secure copy,乙個在linux下用來進行遠端拷貝檔案的命令 把本地當前目錄下的檔案 複製到遠端 使用者目錄下的desktop 注意 後面的路徑如果不是絕對路徑,則以使用者的home目錄作為參照路徑 scp p port filename...