Oracle sqlldr 时间戳格式令人头疼
我正在努力让 sqlldr 将 csv 数据文件导入到我的表中,特别是时间戳字段。
我的 csv 文件中的数据采用以下格式:
16-NOV-09 01.57.48.001000 PM
我已经在控制文件中尝试了各种组合方式,但还是在兜圈子。我在网上找不到任何内容 - 甚至连详细说明所有日期/时间戳格式字符串的 Oracle 参考页也找不到。
有谁知道这个参考页在哪里,或者我应该在我的控制文件中使用什么格式字符串来实现这个时间戳格式。
作为参考,这是我最近尝试过的:
load data
infile 'kev.csv'
into table page_hits
fields terminated by "~"
( ...
event_timestamp TIMESTAMP "dd-mmm-yy hh24.mi.ss",
...)
I'm struggling to get sqlldr
to import a csv data file into my table, specifically with the field that is a timestamp.
The data in my csv file is in this format:
16-NOV-09 01.57.48.001000 PM
I've tried all manner of combinations in my control file and am going around in circles. I can't find anything online - not even the Oracle reference page that details what all the date/timestamp format strings are.
Does anyone know where this reference page is, or what format string I should be using in my control file for this timestamp format.
For reference, this is what I've most recently tried:
load data
infile 'kev.csv'
into table page_hits
fields terminated by "~"
( ...
event_timestamp TIMESTAMP "dd-mmm-yy hh24.mi.ss",
...)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试这种格式:
您可以浏览 SQL 参考文档。
you can try this format:
You can browse all available formats in the SQL reference documentation.