从 csv 文件导入数据
我正在尝试从 .csv
文件导入一些数据(使用 Oracle sql Developer),但收到错误如下:-
验证日期列是否具有日期格式失败日期列
...我的 .csv
文件中的列名称
日期是:
2008-01-09 15:59:23.187
我已尝试提供此格式,但它不起作用(在数据导入向导中)
yyyy-mm-dd HH24:mi:ss.ff3
我试图弄清楚提出一个解决方案,期待一些帮助。
谢谢。
I'm trying to import some data (using oracle sql developer) from a .csv
file but I'm getting an error as :-
Verifying if the Date columns have date formats FAILED Date columns
... column names
the date in my .csv
file is :
2008-01-09 15:59:23.187
I have tried giving this format but it doesn't work (in the data importing wizard)
yyyy-mm-dd HH24:mi:ss.ff3
I'm trying to figure out a solution expecting some help.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我现在无法测试,但我猜测:格式不是日期格式而是时间戳格式。考虑:
如果这与 SQL Dev 遇到的错误相同,您可以导入时间戳列。
I can't test right now but I'm taking a guess: the format is not a DATE format but a TIMESTAMP format. Consider:
If this is the same error that SQL Dev encounters, you could import in a timestamp column.
Oracle Date 只能存储到秒,您需要使用时间戳。
使用时间戳工作正常(日期失败,错误为“日期格式中不允许小数秒格式元素”)
Oracle Date's can only store to seconds, you will need to use the timestamp.
Using a timestamp works fine (date fails with error of "Fractional seconds format element not allowed in DATE formatting")