Jump to content

CSV Import Driving me crazy!!!


HawkCode

Recommended Posts

Hi,

 

I'm trying to import a CSV from an Access query and keep getting the error:

 

[Err] 1292 - Incorrect datetime value: '' for column 'DateEntered' at row 1

 

here is a sample of the data:

 

[!--fonto:Courier New--][span style=\"font-family:Courier New\"][!--/fonto--]1,"Mr.","Donald","F.","Dickerson",

"P.E., CIPE","Estimator",,1/23/1997,"Import"

DATE ENTERED IS--------^^^^^^

[!--fontc--][/span][!--/fontc--]

I've tried it delimited with "," TABs all same result. Anybody got any ideas.

 

TIA

 

Rich

Link to comment
https://forums.phpfreaks.com/topic/3055-csv-import-driving-me-crazy/
Share on other sites

  • 2 weeks later...

If you're just doing it once (or infrequently), the best way to do this is to "cheat' -- first, import the access dates into new CHAR field. Then, set the desired date column using the STR_TO_DATE() function, and drop the temporary CHAR column.

 

UPDATE table1 SET date_field=STR_TO_DATE(temp_date_field, '%m/%d/%Y');

 

Hope that helps.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.