If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > DB2 > how to set dateformat for my import

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 09-27-05, 05:28
Metatron Metatron is offline
Registered User
 
Join Date: Feb 2004
Posts: 21
Wink how to set dateformat for my import

hi guys,
when i try this command:
import from test.txt of del modified by coldel0x09 dateformat="DD-MMM-YY" insert into stat_test
i always get the warning message:
---------------------
SQL3129W The date, time, or timestamp field containing "12-DEC-00" in row "5"
and column "35" was padded with blanks.

----------------------
because my file:test.txt contain one column(column "35") is like "12-DEC-00",
my question is how can i set dateformat to make my import operation be succeed?

Any response is greatly appreciated
Reply With Quote
  #2 (permalink)  
Old 09-27-05, 07:46
Wim Wim is offline
Registered User
 
Join Date: Nov 2004
Posts: 1,279
"DD-MMM-YY" is not a valid dateformat.

You can choose from:

YYYY - Year (four digits ranging from 0000 - 9999)
M - Month (one or two digits ranging from 1 - 12)
MM - Month (two digits ranging from 1 - 12; mutually exclusive with M)
D - Day (one or two digits ranging from 1 - 31)
DD - Day (two digits ranging from 1 - 31; mutually exclusive with D)
DDD - Day of the year (three digits ranging from 001 - 366; mutually exclusive with other day or month elements)

Some examples of date formats are:
"YYYY-MM-DD"
"MM.DD.YYYY"
"YYYYDDD"

You will have to present "12-DEC-00" in the form of "12/12/2000" or something similar to DB2 before you can load those records.
__________________
With kind regards . . . . . SQL Server 2000/2005/2008/2008 R2 Earned beers: 16
Wim
Beware of bugs in the above code; I have only proved it correct, not tried it. -- Donald Knuth
Grabel's Law: 2 is not equal to 3 -- not even for very large values of 2.
Pat Phelan's Law: 2 very definitely CAN equal 3 -- in at least two programming languages
Reply With Quote
  #3 (permalink)  
Old 09-28-05, 04:47
Metatron Metatron is offline
Registered User
 
Join Date: Feb 2004
Posts: 21
Thumbs up

Wim,
thank u for ur reply.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On