oracle 的sql loader用來(lái)將操作系統(tǒng)上的數(shù)據(jù)文件中的內(nèi)容加載到oracle數(shù)據(jù)庫(kù)中.
要使用sql loader,需要先創(chuàng)建一個(gè)控制文件,里面告訴sql loader在啟動(dòng)了sql loader之后的加載數(shù)據(jù)的策略.
新建一個(gè)studentdataload.ctl文件,寫(xiě)入
load data
infile 'studentdata.txt'
into table studentinfo
fields terminated by '|'
(num,name,classnum,tel,address)
然后在控制臺(tái)啟動(dòng)sql loader,寫(xiě)入用戶(hù)名密碼(加載數(shù)據(jù)用),以及控制文件名.
sqlldr control=studentdata.ctl log=load.log
使用sql loader 方法就簡(jiǎn)單多了.
更多信息請(qǐng)查看IT技術(shù)專(zhuān)欄