Loading Mysql database from file

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Konrad

    #1

    Loading Mysql database from file

    Maybe it's not a proper place to ask this question, but maybe someone
    could provide me the way to load file with schema and data of mysql
    database (created by phpMyAdmin on Windows system), to create a new
    database on linux system.


    Greetings,

    Konrad
  • 2metre

    #2
    Re: Loading Mysql database from file

    Konrad wrote:[color=blue]
    > Maybe it's not a proper place to ask this question, but maybe someone
    > could provide me the way to load file with schema and data of mysql
    > database (created by phpMyAdmin on Windows system), to create a new
    > database on linux system.[/color]
    If your familiar with phpMyAdmin - then use it!

    Otherwise on the command line:
    // after decompressing the dumpfile

    mysql -p -u username dbname<dumpfile .sql

    e&oe!!

    Comment

    • Konrad

      #3
      Re: Loading Mysql database from file

      Thanks a lot :)

      greetings

      Konrad

      Comment

      Working...