Results 1 to 2 of 2

Thread: How to import

  1. #1
    Junior Member
    Join Date
    Oct 2010
    Posts
    10

    Default How to import

    How can I import a MySQL dumpfile into my database? My old hosting provider gave me data.sql file. I do have access via ssh to server.

  2. #2
    Administrator
    Join Date
    Oct 2010
    Posts
    25

    Default

    Quote Originally Posted by JohnnySaur View Post
    How can I import a MySQL dumpfile into my database? My old hosting provider gave me data.sql file. I do have access via ssh to server.
    mysql -uusername -p dbname < db.sql

    For example:

    mysql -uroot -p yourdatabase < data.sql

    Of course, you aren't root, but you should know the user.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •