甲骨文。加载数据文件错误

发布于 2024-12-13 09:31:45 字数 594 浏览 1 评论 0原文

表:

CREATE TABLE image_table (
   image_id   NUMBER(5),
   file_name  VARCHAR2(30),
   image_data BLOB);

SQL:

load data infile * replace into table test_image_table
fields terminated by ','
(
     image_id   INTEGER(5),
     file_name  CHAR(30),
     image_data LOBFILE (CONSTANT 'C:\img.txt') TERMINATED BY EOF
 )

C:\img.txt: 001,C:\1.jpg

错误: ORA-00928: 缺少 SELECT 关键字 00928. 00000 - “缺少 SELECT 关键字” *原因:
*行动: 错误位于行:4 列:1

我做错了什么?

Table:

CREATE TABLE image_table (
   image_id   NUMBER(5),
   file_name  VARCHAR2(30),
   image_data BLOB);

SQL:

load data infile * replace into table test_image_table
fields terminated by ','
(
     image_id   INTEGER(5),
     file_name  CHAR(30),
     image_data LOBFILE (CONSTANT 'C:\img.txt') TERMINATED BY EOF
 )

C:\img.txt: 001,C:\1.jpg

Error:
ORA-00928: missing SELECT keyword
00928. 00000 - "missing SELECT keyword"
*Cause:
*Action:
Error at Line: 4 Column: 1

What I do wrong ??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

染年凉城似染瑾 2024-12-20 09:31:45

您想要使用 SQL*Loader,它不是 SQL*Plus。您必须将您调用的 SQL 保存为扩展名为 .ctl 的文件,并调用 sqlldr:

sqlldr login/password@database control=my_file.ctl

请注意,infile * 意味着您必须您的 CTL 文件中有一些 BEGINDATA

You want to use SQL*Loader which is not SQL*Plus. You have to save what you call SQL as a file with the .ctl extension, and call sqlldr:

sqlldr login/password@database control=my_file.ctl

Note that infile * means that you must have some BEGINDATA inside your CTL file.

那支青花 2024-12-20 09:31:45

您似乎正在尝试使用 SQL*Plus 来运行 SQL*Loader 控制文件。在 UNIX 命令行中使用以下 sqlldr 之一。不要忘记将提到的 SQL 文件另存为 .ctl 文件。

sqlldr username@server/password control=loader.ctl

或者

sqlldr username/password@server control=loader.ctl

It seems like you are trying to use the SQL*Plus to run your SQL*Loader control file. Use one of the below sqlldr in your UNIX command line. Don't forget to save your mentioned SQL file as a .ctl file.

sqlldr username@server/password control=loader.ctl

or

sqlldr username/password@server control=loader.ctl
长发绾君心 2024-12-20 09:31:45

在 SQL Developer 中尝试以下操作:host sqlldr 用户名/密码 control=my_file.ctl

Try this in SQL Developer: host sqlldr username/password control=my_file.ctl

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文