1

I am trying to move my MS Access databases into a single database of MySQL. Each table has at least 50,000 rows and 70 columns. What is the best way to import the data to MySQL tables?

I tried exporting it first to Excel and using the 'MySQL for Excel' add-on but the data seems to large for it to handle efficiently. If there are better ways to do it, please let me know.

1 Answer 1

2

Export your file to a TXT or CSV and then use this MySQL Command:

LOAD DATA INFILE 'path/file.txt' INTO TABLE your_table;
Sign up to request clarification or add additional context in comments.

1 Comment

I added a few more things in the command but this idea worked. Thanks!

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.