Forum Moderators: open
The database I bought is a file with the .sql extension. Using phpMyAdmin I can create a new MySQL database with tables. However, I have no idea (and have not found any info on this in the search engines) how to import the data from the .sql file to the database.
Any help would be greatly appreciated!
Thanks in advance.
I don't know how to do it with phpmyAdmin, but someone here does.
I always do it from the command line:
mysql -u root -p < d:\backupfile.sql
which will read and execute the file called backupfile.sql
How can I remove this limitation to I can add any size of .sql file to the database?
Thanks in advance :o)