0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

sqlloaderメモ

Last updated at Posted at 2020-09-08

コマンド

sqlldr <db名>/<パスワード>@<接続文字列> data=<データファイルパス.> control=<制御ファイルパス> LOG=<ログファイルパス(.log不要)> BAD=<エラーファイルパス.> skip=スキップする行数 load=ロードするレコード数

コントロールファイル内容
OPTIONS (ERRORS=50)
LOAD DATA
APPEND
INTO TABLE ""."<テーブル名>"
FIELDS TERMINATED BY' '
TRAILING NULLCOLS (
"USERID" ,
"USERNAME" CHAR (10))

データファイル内容
HEADER 20200101
1 あ
2 い
TRAILER 000000000000002

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?