如何在Oracle sqlldr控制文件中指定制表符分隔文件加载?
这应该很简单,但是 Oracle sqlldr 控制文件指定制表符分隔/分隔数据的正确语法是什么?
FWIW,我发现该文件是 UTF16 而不是 UTF8,并且编辑得很好,但在 Oracle 读取控制文件时会引入空字节。今天甚至无法复制。
This should be simple, but what is the correct syntax for an Oracle sqlldr control file in order to specify tab delimited/separated data?
FWIW, I found the file was UTF16 and not UTF8, and was editing fine but would introduce null bytes as Oracle read the control file. Can't even replicate today.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据此线程,它应该是由 '\t 终止的
字段'
(手头没有安装 Oracle 来验证这是否正确)。Per this thread, it should be
fields terminated by '\t'
(don't have an Oracle installation at hand to verify that this is correct).