Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Uploading data with different date format

Status
Not open for further replies.

DanAuber

IS-IT--Management
Apr 28, 2000
255
FR
I have some flat file data that I want to upload (via sqlloade) into an Oracle table. The date in the flat file is in the format DD.MM.YY e.g. 23.09.01

How can I load this data into a date field in Oracle ??

thanks for any help

Dan

Dan Auber
DanAuber@aol.com
 
use a format mask i.e....

eftv_from DATE(8) "YYYYMMDD",

loads in the format YYYMMDD

you would want....

eftv_from DATE(8) "DD.MM.RR",
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top