萬盛學電腦網

 萬盛學電腦網 >> 數據庫 >> oracle教程 >> oracle數據庫如何導出並重新導入

oracle數據庫如何導出並重新導入

oracle數據庫導出並重新導入   一、導出數據庫 ? 1 2 3 4 5 6 1、將數據庫TEST完全導出,用戶名scott密碼tiger,導出到D:testDB.dmp中: [plain] exp scott/tiger@TEST file=d:testDB.dmp full=y  2、將數據庫中的表emp導出: [plain] exp scott/tiger@TEST file=d:testDB.dmp tables=(emp)

 

  二、導入數據庫   1 2 3 4 5 6 1、導入一個完整數據庫 [plain] imp scott/tiger@TEST file=d:testDB.dmp full=y ignore=y  2、導入一個表emp [plain] imp scott/tiger@TEST file=d:testDB.dmp tables=(emp)

 

  附:   1 2 3 4 5 6 7 8 9 1、級聯刪除用戶scott: [sql] drop user scott cascade;  2、創建用戶scott,密碼tiger: [sql] create user scott identified by tiger;  3、給scott賦予DBA權限: [sql] grant dba to scott;

 

copyright © 萬盛學電腦網 all rights reserved