PL/SQL登錄到數(shù)據(jù)庫,使用tools工具進行導(dǎo)入。使用plsql登錄到需要導(dǎo)入數(shù)據(jù)的數(shù)據(jù)庫。點擊工具欄上【tools】--【Import tables】
我們擁有十載網(wǎng)頁設(shè)計和網(wǎng)站建設(shè)經(jīng)驗,從網(wǎng)站策劃到網(wǎng)站制作,我們的網(wǎng)頁設(shè)計師為您提供的解決方案。為企業(yè)提供成都網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計、微信開發(fā)、微信小程序開發(fā)、成都做手機網(wǎng)站、HTML5、等業(yè)務(wù)。無論您有什么樣的網(wǎng)站設(shè)計或者設(shè)計方案要求,我們都將富于創(chuàng)造性的提供專業(yè)設(shè)計服務(wù)并滿足您的需求。
請點擊輸入圖片描述
點擊工具【SQL Inserts】(第二個選項),點擊選擇需要導(dǎo)入的數(shù)據(jù)庫腳本。
請點擊輸入圖片描述
選擇sql腳本的,點擊打開,即可打開數(shù)據(jù)庫腳本文件,數(shù)據(jù)庫腳本就可以預(yù)加載到plsq工具中。
請點擊輸入圖片描述
開始導(dǎo)入數(shù)據(jù)庫數(shù)據(jù)。選擇完sql腳本之后,點擊【Import】按鈕開始將腳本中的數(shù)據(jù)導(dǎo)入到數(shù)據(jù)庫中,這個操作執(zhí)行一次即可,如果數(shù)據(jù)量比較大,會出現(xiàn)卡頓。
請點擊輸入圖片描述
執(zhí)行完之后,沒有任何報錯說明插入成功。【注意:一定記得點擊commit進行提交數(shù)據(jù),否則數(shù)據(jù)不會提交到數(shù)據(jù)庫進行存儲】
請點擊輸入圖片描述
查詢驗證插入的數(shù)據(jù)。插入完之后,可以編寫sql語句對插入的數(shù)據(jù)進行核對。執(zhí)行查詢sql看到剛才插入的數(shù)據(jù)。
請點擊輸入圖片描述
在命令行模式下,用 如下格式的命令就可以實現(xiàn)腳本的導(dǎo)入執(zhí)行:
sqlplus [username]/[password]@[instancename] @[scriptfilename]
中括號內(nèi)的內(nèi)容用實際名字代替。
我給你一些數(shù)據(jù)庫常用的導(dǎo)入導(dǎo)出命令吧:\x0d\x0a該命令在“開始菜單運行CMD”中執(zhí)行\(zhòng)x0d\x0a一、數(shù)據(jù)導(dǎo)出(exp.exe)\x0d\x0a1、將數(shù)據(jù)庫orcl完全導(dǎo)出,用戶名system,密碼accp,導(dǎo)出到d:\daochu.dmp文件中\(zhòng)x0d\x0aexp system/accp@orcl file=d:\daochu.dmp full=y\x0d\x0a\x0d\x0a2、將數(shù)據(jù)庫orcl中scott用戶的對象導(dǎo)出\x0d\x0aexp scott/accp@orcl file=d:\daochu.dmp owner=(scott)\x0d\x0a\x0d\x0a3、將數(shù)據(jù)庫orcl中的scott用戶的表emp、dept導(dǎo)出\x0d\x0aexp scott/accp@orcl file= d:\daochu.dmp tables=(emp,dept)\x0d\x0a\x0d\x0a4、將數(shù)據(jù)庫orcl中的表空間testSpace導(dǎo)出\x0d\x0aexp system/accp@orcl file=d:\daochu.dmp tablespaces=(testSpace)\x0d\x0a\x0d\x0a二、數(shù)據(jù)導(dǎo)入(imp.exe)\x0d\x0a1、將d:\daochu.dmp 中的數(shù)據(jù)導(dǎo)入 orcl數(shù)據(jù)庫中。\x0d\x0aimp system/accp@orcl file=d:\daochu.dmp full=y\x0d\x0a\x0d\x0a2、如果導(dǎo)入時,數(shù)據(jù)表已經(jīng)存在,將報錯,對該表不會進行導(dǎo)入;加上ignore=y即可,表示忽略現(xiàn)有表,在現(xiàn)有表上追加記錄。\x0d\x0aimp scott/accp@orcl file=d:\daochu.dmp full=y ignore=y\x0d\x0a\x0d\x0a3、將d:\daochu.dmp中的表emp導(dǎo)入\x0d\x0aimp scott/accp@orcl file=d:\daochu.dmp tables=(emp)