Import datas into a table

wolfgangsaul's profile image wolfgangsaul posted 17 hours ago in Import/Export Permalink

Hallo is it possible to import datas from an Excel table into a mysql 8.0.35 table? Thanks Wolfgang

ansgar's profile image ansgar posted 15 hours ago Permalink

Yes, that's possible. You just need to save your Excel sheet to a .csv file. In HeidiSQL, go to Tools > "Import CSV file", select your .csv file and set the control characters (field terminator etc.) which Excel has put into that file.

wolfgangsaul's profile image wolfgangsaul posted 15 hours ago Permalink

Hi Ansgar, I didn't know HeidiSQL was so user-friendly. What switch do I need to set?

1 attachment(s):
  • 2025-04-03-18_07_21-Greenshot
ansgar's profile image ansgar posted 1 hour ago Permalink

The message says it basically. There are two places where you need to have that "local infile" option enabled. On the client side, HeidiSQL already does it when you connect to your server. But on the server side the same option is likely still disabled. You can try two different things to solve that:

  • set the server option in HeidiSQL before you import your file, through a query:

    SET GLOBAL local_infile=true;
  • alternatively, if you have access to your MySQL server, you can activate the option permanently, by putting it in your my.cnf or my.ini file:

[mysqld]
local_infile=1

After saving the file, restart the MySQL server. This is a permanent solution, so it's probably the preferred one.

Please login to leave a reply, or register at first.