oracle匯入csv檔案

2022-07-20 19:57:10 字數 475 閱讀 4629

oracle匯入csv檔案:

1、建好對應的表和字段;

2、新建test.ctl檔案,用記事本編輯寫入:

load

data

infile

'e:\tb_kc_serv.csv

' --修改對應的檔案路徑

into

table

"tb_kc_serv"    --修改對應的表名

fields terminated by'

,'optionally enclosed by'

"'(serv_id,acc_nbr,prod_id) --修改對應的字段

3、開啟cmd命令列介面:

輸入:sqlldr userid=username/password@host control=e:\test.ctl log=e:\test.log

(以上操作的檔案路徑都是放在e盤下直接操作)

CSV檔案匯入oracle資料庫

今天剛學了一招把.csv檔案匯入oracle資料庫的方法 1.首先在資料庫對應使用者下建表 t test 字段型別及名字要與csv檔案相同。2.新建txt test.txt 檔案輸入 load data infile d test.csv into table t test fields termi...

mongodb匯入csv檔案

使用命令 mongoimport 引數 h 主機ip 埠 d 要匯入的db c 要匯入的collections f 指定字段 type 型別 file 匯入的檔案路徑 演示如下 root localhost bin mongoimport h 192.168.1.151 27017 d logs c...

Mysql 匯入csv檔案

mysql load data infile命令可以把csv平面檔案中的資料匯入到資料庫中。linux下 load data infile home test dump ip location.csv into table ip location character set utf8 fields ...