3

how to import (.dmp) database format in mysql or phpmyadmin ?

I am using phpmyadmin mysql tool for database manage. I have receive database backup in .dmp format, I have require import database in phpmyadmin as mysql database format.

Code Lღver
  • 15,573
  • 16
  • 56
  • 75
tailor
  • 366
  • 3
  • 6
  • 20

2 Answers2

5

you should change the extension manually .dmp to .sql and import using phpmyadmin or mysql as you import .sql files.

for mysql try below code

mysql -u {DB-USER-NAME} -p {DB-NAME} < {file.sql}

replace curly braces with your db details and from phpmyadmin click on import link and browse the file.

Ram Sharma
  • 8,676
  • 7
  • 43
  • 56
-1

XAMPP 1.7.7 version phpmyadmin support (.dmp) file import but import format define as (sql,csv,docsql,sml,open document spreadsheet).

you can import .dmp database format.

tailor
  • 366
  • 3
  • 6
  • 20
  • Please add some explanation to your answer such that others can learn from it. Does your answer mean that you resolved your problem in any way? – Nico Haase Aug 11 '20 at 09:16