Excel to SQL - Very large file - mysql

I have a excel workbook with two sheets. One sheet is maxed out and the other is over half way. In total there's about 1.7 million rows.
Can someone help me with getting this into sql format. I need to import this into my sql server. I can either use Workbench or PHPMyAdmin.
The excel file is 84MB.
Thanks for your help.

Try to save your data as CSV file (Excel allows to do it), then import data from the CSV file into specified table with LOAD DATA INFILE statement.
Also, have a look at this feature - Data Import tool (Excel format) in dbForge Studio for MySQL.

Related

SSIS destination CSV file getting bad data

I have developed one SSIS package where I need to take records from database and send it in CSV file. While doing so I found that the csv file when opened in excel is showing some column records with = sign eg "=D7". Can you please suggest how to overcome the issue? Thanks,pallabi

differnce between .csv file an Excel sheet in My sql database

what is the advantage of using excel sheet over .csv file while exporting data to database...plz share the differnces and which format is best to load data to database.
I want to load bulcks of data and and tabels to database.
waht is the solution for this

How to insert particular excel file fields records into sqlserver database table manually

I am facing some problem with inserting data from excel file to sqlserver database table. kindly suggest me what i need to do?
i.e. i am having bulk copy of data in various excel files. from that excel files, only selected fields of data would be inserted into sqlserver database table.
how can i achieve this functionality manually.
kindly give me reference sites & suggestions.
Thanks in Advance
Satish Chandragiri
I would connect to the SQL Server DB via VBA from some excel workbook and browse that bulk of Excel files and insert all the data to the DB. The link below shows how to connect to the SQL Server database.
http://www.mrexcel.com/forum/excel-questions/617788-visual-basic-applications-connect-sql-server.html

import Bulk data xlsx to mysql ? couldn't convert xls

I need to import more than 280 000 records to mysql (sqlite also fine). I have the xlsx format only. I couldn't convert this to xls file. Is there way or import option in latest version or any better tool available. thanks in advance.
See if you can convert the xslx file to csv format then follow this post: Import Excel Data into MySQL in 5 Easy Steps
You can use Data Import tool in dbForge Studio for MySQL.
Open Data Import wizard, select 'MS Excel 2007' format, specify other options and press Import.

Import Excel Spreadsheet to MySQL DB using VB.Net

I've got this problem of importing excel data to MySQL database. I want to create a VB.net application that allows the user to browse the excel file then click upload and automatically all the data in the excel file will be saved into the database.
I've already created a VB.net form with the browse thing and my only problem is the saving of the data. Can someone help me please.. thanks..
Store Excel file as comma separated text - CSV file.
Import data using LOAD DATA INFILE.