Database import issue mysql file on phpmyadmin
Import Using MySQL Command Line (Recommended)
Command line importing bypasses limitations in phpMyAdmin, making it ideal for very large databases:
- Open Command Prompt and navigate to the MySQL folder:
- Run the following command to import the database:
Replace
database_nameandpath\to\your\databasefile.sqlwith your database’s name and the path to the SQL file.
if ask for password then enter with blank if you don't have any password
Alternative way:-
1.mysql -u root -p buzfi
2.Enter the password when prompted.
3.Run the following command to import the file:
source C:/xampp/htdocs/buzfi/buzfi_ecom.sql;
No comments