I've seen a lot of questions here about how to export a sql database to excel, but I have a ton of information from an excel file that I would like to export to sql database. The file is extensive and it could take me years to transfer the info manually... years! Is there a faster easier way to do this?
|
|
You don't actually need to write code to do this. Save the Excel file to CSV format and then see one of the many related questions:
The friendliest way is to use a graphical tool like HeidiSQL to match up the excel columns to the columns in your database.
|
|||
|
|
|
You can use apache poi library to read the excel file line by line and jdbc to create connection to mysql database and execute insert statements. In my project I used jruby with nurettin-jruby-poi fork of the jruby-poi gem to read the excel file and activerecord to insert the data into mysql. |
|||
|
|
Since it is automated it will be faster |
|||
|
|
|
As Colin Pickard said, you can use CSV format that can be directly imported. If you're using PHP, you can use the PHPExcel library here which can do the job !
|
|||
|
|
|
You can use a GUI Data Import tool, it supports direct import from *.XLS and *.XLSX (Excel 2007) files. |
|||
|
|
|
Use Talend Open Studio to visually design and then automate any kind of data integration job. |
|||
|
|
|
This is my favorite free tool for converting excel sheets into mysql database... |
|||
|
|

