Oracle sqlldr 时间戳格式令人头疼

发布于 2024-08-16 12:46:55 字数 462 浏览 6 评论 0原文

我正在努力让 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 技术交流群。

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

发布评论

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

评论(1

桃气十足 2024-08-23 12:46:55

您可以尝试这种格式:

event_timestamp TIMESTAMP "dd-MON-yy hh.mi.ss.ff6 PM"

您可以浏览 SQL 参考文档

you can try this format:

event_timestamp TIMESTAMP "dd-MON-yy hh.mi.ss.ff6 PM"

You can browse all available formats in the SQL reference documentation.

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