SQL LOAD經常使用的一些例子

2021-06-04 05:07:51 字數 2171 閱讀 6708

參考:

使用sqlload匯入變長字元:

使用sqlload匯入定長字元:

load data

infile *

into table load_positional_data

( data1 position(1:5),

data2 position(6:15)

)begindata

11111aaaaaaaaaa

22222bbbbbbbbbb

使用sqlload匯入資料時 不匯入從檔案頭開始的指定行資料.

使用sqlload匯入資料時,如何新增/修改資料

使用sql*load一次匯入多個檔案到同乙個表

使用sql*load將乙個檔案匯入不同的表

load data

infile *

into table tab1 when tab = 'tab1'

( tab filler char(4),

col1 integer

)into table tab2 when tab = 'tab2'

( tab filler position(1:4),

col1 integer

)begindata

tab1|1

tab1|2

tab2|2

tab3|3

**********====

load data

infile 'mydata.dat'

replace

into table emp

when empno != ' '

( empno position(1:4)   integer external,

ename position(6:15) char,

deptno position(17:18) char,

mgr    position(20:23) integer external

)into table proj

when projno != ' '

( projno position(25:27) integer external,

empno position(1:4)   integer external

)使用sql*load有選擇性的匯入資料到乙個或多個表中注:

sql*load不允許在when語句中使用or...只能使用and

(01) 表示資料檔案中的第乙個字元

(30:37) 表示資料檔案中第30-37個字元

使用sql*load匯入資料時,過濾資料檔案中的指定列

load data

truncate into table t1

fields terminated by ','

( field1,

field2 filler,

field3

)使用sql*load匯入lob等大物件

一些經常忘記的操作

1.把本地檔案傳到伺服器 使用 mstsc 遠端桌面連線 microsoft terminal services client cmd中輸入 mstsc 顯示選項中輸入使用者名稱和伺服器公網ip 本地資源 詳細資訊 驅動器 中選擇在伺服器中掛的本地儲存盤,把所需要的資料放到此本地儲存盤。連線,連線上...

經常用到的一些函式

1.對話方塊函式 showmessage 用於在程式執行過程中顯示乙個包含乙個字串資訊的對話方塊,使用者只有對這個對話方塊準確響應後才能關閉對話方塊,進行下一步工作。語法結構 showmessage const msg string showmessage hello delphi messaged...

經常遇到的一些問題

經常遇到的一些問題 css js 1.開啟視窗 welcome 等效於js window.location.href 在同當前視窗中開啟視窗 welcome 等效於js window.open url 在另外新建視窗中開啟視窗 2.一開啟頁面就載入的函式 document ready functio...