MySQL Forums
Forum List  »  Other Migration

Re: Import data from an excel file??
Posted by: Paul McArdle
Date: June 28, 2005 02:40AM

export from excel as .csv, tab seperated usually works

load data infile '/tmp/file.csv' into table tableName ignore 1 lines

lose the ignore 1 lines if your file does't have a header row.

try it with a small selection of data against a test table first.

Options: ReplyQuote


Subject
Views
Written By
Posted
6687
June 01, 2005 09:08PM
Re: Import data from an excel file??
4090
June 28, 2005 02:40AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.