Oracle sqlldr 时间戳格式头疼

Oracle sqlldr timestamp format headache(Oracle sqlldr 时间戳格式头疼)
本文介绍了Oracle sqlldr 时间戳格式头疼的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在努力让 sqlldr 将 csv 数据文件导入到我的表中,特别是使用时间戳字段.

I'm struggling to get sqlldr to import a csv data file into my table, specifically with the field that is a timestamp.

我的 csv 文件中的数据是这种格式:

The data in my csv file is in this format:

16-NOV-09 01.57.48.001000 PM

我已经在我的控制文件中尝试了各种组合方式,并且正在转圈.我在网上找不到任何东西——甚至没有详细说明所有日期/时间戳格式字符串是什么的 Oracle 参考页面.

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", 
...)

推荐答案

你可以试试这个格式:

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

您可以在 SQL 参考文档.

这篇关于Oracle sqlldr 时间戳格式头疼的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

SQL to Generate Periodic Snapshots from Transactions Table(用于从事务表生成定期快照的SQL)
MyBatis support for multiple databases(MyBatis支持多个数据库)
Oracle 12c SQL: Missing column Headers in result(Oracle 12c SQL:结果中缺少列标题)
SQL query to find the number of customers who shopped for 3 consecutive days in month of January 2020(查询2020年1月连续购物3天的客户数量)
How to get top 10 data weekly (This week, Previous week, Last month, 2 months ago, 3 month ago)(如何每周获取前十大数据(本周、前一周、上个月、2个月前、3个月前))
Select the latest record for an Id per day - Oracle pl sql(选择每天ID的最新记录-Oracle pl SQL)