1. oracle讀取excel
1.oracle資料庫有一個student表,現有一個excel表:student.xlsx,需導入oracle資料庫student表中。
student表的擁有者是system,system密碼為test。
2. 如何用sqlload導欄位類型是number的
load data
infile 'result.csv '
into table resultxt
(resultid number load data
infile 'result.csv '
into table resultxt
(resultid number terminated by ', ',
website char terminated by ', ',
ipport char terminated by ', ',
status char terminated by whitespace)
直接在ctl文件裡面的欄位後面標上number即可,否則自動轉為Char。