Oracle sql loader 日期格式问题
我是 sql 加载器的新手,并且我遇到了日期格式问题。
以下是输入文件记录示例:
Y,1525039510,http-192.168.2.2,15-01-2011 00:00:032:728,64
Y,1525131958,http-192.168.2.2,15-01-2011 00:00:033:613,75
我的第四列(日期)有问题。
我当前的字段条目是这样的:
start_time DATE "DD-MM-YYYY HH:MI
如何解析输入的最后部分 032:728 (秒和毫秒)
我尝试了 SSS:FF3 和 SS .FF3,没有运气。
I'm new to sql loader, and i'm having a problem with the date format.
Here is the input file record sample:
Y,1525039510,http-192.168.2.2,15-01-2011 00:00:032:728,64
Y,1525131958,http-192.168.2.2,15-01-2011 00:00:033:613,75
I'm having a problem with the fourth column, the date.
My current field entry is this:
start_time DATE "DD-MM-YYYY HH:MI
How do i parse the last part of the input 032:728 (seconds and milliseconds)
I tried SSS:FF3 and SS.FF3, no luck.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将输入视为字符串并使用函数对其进行转换。像这样的东西应该有效:
我不得不删除毫秒部分,因为它们不是 DATE 数据类型的一部分(
to_date
无法识别FF
格式)。You could treat the input as a string and transform it with a function. Something like this should work:
I had to drop the millisecond part since they are not part of the DATE datatype (
to_date
doesn't recognize theFF
format).您可以将其读入时间戳字段。数据看起来有点奇怪: 15-01-2011 00:00:033:613,75 但转换格式应该是 dd-mm-yyyy hh[24]:mi:0ss:fff,ff
确保您的 nls 设置符合预期。
罗纳德.
You can read this into a timestamp field. The data looks a bit weird: 15-01-2011 00:00:033:613,75 but the conversion format should be dd-mm-yyyy hh[24]:mi:0ss:fff,ff
Make sure that your nls settings are as expected.
Ronald.