Skip to content

Commit

Permalink
0003825: Oracle bulk loader using SQL*Loader sqlldr
Browse files Browse the repository at this point in the history
  • Loading branch information
elong committed Dec 19, 2018
1 parent c99d8a8 commit 7f7fc57
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -138,7 +138,7 @@ protected void createStagingFile() {
OutputStream out = controlResource.getOutputStream();
out.write(("LOAD DATA\n").getBytes());
out.write(getInfileControl().getBytes());
out.write(("APPEND INTO TABLE " + targetTable.getName() + "\n").getBytes());
out.write(("APPEND INTO TABLE " + targetTable.getQualifiedTableName("\"", ".", ".") + "\n").getBytes());

out.write(("FIELDS TERMINATED BY '" + FIELD_TERMINATOR + "'\n").getBytes());
out.write(getLineTerminatedByControl().getBytes());
Expand Down

0 comments on commit 7f7fc57

Please sign in to comment.