1.點(diǎn)新建連接。\x0d\x0a2.輸入用戶名/密碼。\x0d\x0a3.主機(jī)名:輸入要連接的數(shù)據(jù)庫(kù)IP地址。\x0d\x0a4.端口:如果默認(rèn)1521就不用修改。\x0d\x0a5.如果選擇sid,就得保證數(shù)據(jù)庫(kù)監(jiān)聽(tīng)中有監(jiān)聽(tīng)SID的。\x0d\x0a 否則選擇服務(wù)名,默認(rèn)情況下填數(shù)據(jù)庫(kù)的DB_NAME即可\x0d\x0a 如果不清楚服務(wù)名,可到數(shù)據(jù)庫(kù)所在機(jī)器的命令行下,執(zhí)行 lsnrctl staus 查看。
網(wǎng)站設(shè)計(jì)制作、做網(wǎng)站,成都做網(wǎng)站公司-創(chuàng)新互聯(lián)已向近千家企業(yè)提供了,網(wǎng)站設(shè)計(jì),網(wǎng)站制作,網(wǎng)絡(luò)營(yíng)銷等服務(wù)!設(shè)計(jì)與技術(shù)結(jié)合,多年網(wǎng)站推廣經(jīng)驗(yàn),合理的價(jià)格為您打造企業(yè)品質(zhì)網(wǎng)站。
我給你一些數(shù)據(jù)庫(kù)常用的導(dǎo)入導(dǎo)出命令吧:\x0d\x0a該命令在“開(kāi)始菜單運(yùn)行CMD”中執(zhí)行\(zhòng)x0d\x0a一、數(shù)據(jù)導(dǎo)出(exp.exe)\x0d\x0a1、將數(shù)據(jù)庫(kù)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ù)庫(kù)orcl中scott用戶的對(duì)象導(dǎo)出\x0d\x0aexp scott/accp@orcl file=d:\daochu.dmp owner=(scott)\x0d\x0a\x0d\x0a3、將數(shù)據(jù)庫(kù)orcl中的scott用戶的表emp、dept導(dǎo)出\x0d\x0aexp scott/accp@orcl file= d:\daochu.dmp tables=(emp,dept)\x0d\x0a\x0d\x0a4、將數(shù)據(jù)庫(kù)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ù)庫(kù)中。\x0d\x0aimp system/accp@orcl file=d:\daochu.dmp full=y\x0d\x0a\x0d\x0a2、如果導(dǎo)入時(shí),數(shù)據(jù)表已經(jīng)存在,將報(bào)錯(cuò),對(duì)該表不會(huì)進(jìn)行導(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)
1、安裝并打開(kāi)toad可視化工具。
2、輸入服務(wù)器名或服務(wù)器Ip地址、數(shù)據(jù)庫(kù)用戶名及密碼,成功連接到數(shù)據(jù)庫(kù)。
3、進(jìn)入軟件界面。
4、如果你看到的界面不同,首先點(diǎn)擊“Editor”——“SQL”按鈕,即可打開(kāi) sql語(yǔ)句編輯窗口。
5、然后在Current Schema編輯窗口中,輸入sql語(yǔ)句,測(cè)試語(yǔ)句最好不要使用改變數(shù)據(jù)庫(kù)結(jié)構(gòu)和數(shù)據(jù)的語(yǔ)句。
6、然后按F5或點(diǎn)擊如圖按鈕運(yùn)行SQl語(yǔ)句。底部“grid1”中可以看到運(yùn)行結(jié)果。
1.首先裝好10g 11g的數(shù)據(jù)庫(kù);
2.登陸數(shù)據(jù)庫(kù)并創(chuàng)建用戶;
開(kāi)始--運(yùn)行--sqlplus /nolog
conn /as sysdba
create user test identified by test;
grant resource,connect to test;
3.使用test(密碼 test)用戶賬號(hào)登陸,并建立一張簡(jiǎn)單的表
create table test (id int,name char(10));
4.向該表插入數(shù)據(jù)
insert into test values (1,'yxd2766');
commit;