當前位置:首頁 » 網頁前端 » xshell導入數據腳本編寫
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

xshell導入數據腳本編寫

發布時間: 2023-07-06 21:43:14

⑴ 怎樣使用 xshell 進行資料庫 oracle 數據的導出導入

怎樣使用 xshell 進行資料庫 oracle 數據的導出導入
例如將scott用戶下所有表,導入到test用戶下
1 exp scott/tiger file=scott.dmp owner=scott
2 (1) 如果test用戶下有scott的表,哪些需要先刪除在導入
conn test/test
select 'drop table '||table_name||' purge;' from user_tables;
imp test/test file=scott.dmp fromuser=scott touser=test
(2) 如果test用戶下沒有scott用戶的表,可以直接導入
imp test/test file=scott.dmp fromuser=scott touser=test

⑵ xshell遠程資料庫添加數據

xshell遠程資料庫添加數據的步驟:
1、當遠程資料庫斷線時,將數據上傳到本地資料庫。
2、遠程資料庫由斷線變為可連接時,將本地資料庫中的數據上傳到遠程資料庫中。

⑶ XShell5裡面登陸了資料庫,如何將資料庫裡面的表或者整個資料庫備份導出來(和導入進去)

開始—運行—輸入「CMD」回車,然後直接寫入以下命令
導出的命令:
exp 用戶名/密碼@資料庫名 file=D:\database.dmp log=data.log
file後是寫得你導出的文件存放的路徑,database.dmp是你導出的文件,log是你導出日誌,便於查詢錯誤,不要也可以。例如 exp user/password@orcl file=d:\aaa.dmp
導入的命令:
imp 用戶名/密碼@資料庫名 file=D:\database.dmp full=y
full=y一定不要丟。