Experts,
I have a text file with times of runners in a track meet. When I import the text file into the table (fields have been removed for simpliciation), even though I am importing times into a text field (RunningTime), it converts the time to a real time, ie: 1:10:34 is converted to 1:10:34 AM.
Here is my statement:
INSERT INTO tblTable (RunningTime) SELECT RunningTime FROM [Text; DATABASE=c:\;HDR=YES].[Imp
ortFile.tx
t]
Is there anyway to suppress this formatting that is occuring? The strange thing is that it is not even being imported into a date/time field, it is a text field.
Thanks
Start Free Trial