Dumping large database

Discussion in 'MySQL' started by Tanzil Ahmed, Dec 10, 2007.

  1. #1
    Hello

    I want to dump large database of around 80 mb and my internet is so slow to handle please suggest any measure
     
    Tanzil Ahmed, Dec 10, 2007 IP
  2. Kuldeep1952

    Kuldeep1952 Active Member

    Messages:
    290
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    60
    #2
    If your Internet speed is slow and liable to interruption, you can
    use a download manage which will be able to resume interrupted
    downloads.
     
    Kuldeep1952, Dec 10, 2007 IP
  3. wavey

    wavey Peon

    Messages:
    15
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Also make sure that the raw database file is compressed before downloading.
     
    wavey, Dec 14, 2007 IP
  4. nikg

    nikg Well-Known Member

    Messages:
    642
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    120
    #4
    nikg, Dec 14, 2007 IP
  5. Pathan

    Pathan Well-Known Member

    Messages:
    2,196
    Likes Received:
    218
    Best Answers:
    0
    Trophy Points:
    165
    #5
    I hope u have SSH enabled if yes, then follow the steps.
    > Give this command in ur SSH do replace wid ur database username & Password.

    mysqldump -udbusername -pdbpassword --dbname >filename.sql

    it will create .sql file now transfer tht .sql file with "wget" command.

    and after getting tht .sql on ur new host simply extract tht .sql with command

    mysql -uusername -ppassword -- username < file.sql

    Hope it works :)
     
    Pathan, Dec 14, 2007 IP
  6. charlessmith

    charlessmith Banned

    Messages:
    11
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Let me second the bigdump link prior. I used it to upload a 300 meg db perfectly.

    Charles
     
    charlessmith, Dec 17, 2007 IP
  7. Tanzil Ahmed

    Tanzil Ahmed Well-Known Member

    Messages:
    357
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    110
    #7
    Thanks guys for your concern
     
    Tanzil Ahmed, Dec 17, 2007 IP