Backup & restore MySQL, not using mysqldump

Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default Backup & restore MySQL, not using mysqldump

    How can I backup and restore a MySQL DB WITHOUT USING

    EXEC()
    MYSQL
    MYSQLDUMP

    ??

    If I try running exec() and mysqldump, I get Fork warning errors ..

    Win 2000Server
    IIS5
    Latest PHP & MySQL

    Thanks


    Jerry T Guest

  2. Similar Questions and Discussions

    1. Backup/Restore Configuration
      I am formating and reinstalling my server, but I don't want to go through all the hassle of creating all my datasources, and re-configuring...
    2. dbm cfg backup/restore
      DB2 v7.1.0.68 on AIX 4.3.3.0. A db2 backup contains Database configuration (db cfg) parameters, but not Database Manager (dbm cfg) parameters....
    3. AIX 4.3 backup/restore
      Can any one help I have taken over a legacy system and need to restore 2 files. Aix 4.3 backup was used to create the tape backup and it...
    4. MYSQL Backup & Restore using PHP ?
      HI, I'm looking for a script that will allow users/admins to have a one click backup solution for a MYSQL Database.. 'BACK DATABASE' button,...
    5. Restore backup
      Hello ng, I have made a backup on a machine with db2 v7.2 installed. Now I wanna restore this backup an another machine with an new db version...
  3. #2

    Default Re: Backup & restore MySQL, not using mysqldump

    Jerry T <Jerry@ nothanks.com> wrote in message
    news:<rdshjvclp5nviod94hgpev9il8e93nutaf@4ax.com>. ..
    >
    > How can I backup and restore a MySQL DB WITHOUT USING
    >
    > EXEC()
    > MYSQL
    > MYSQLDUMP
    Read up on BACKUP and RESTORE queries:

    [url]http://www.mysql.com/doc/en/BACKUP_TABLE.html[/url]
    [url]http://www.mysql.com/doc/en/RESTORE_TABLE.html[/url]

    Cheers,
    NC
    Nikolai Chuvakhin Guest

  4. #3

    Lightbulb Re: Backup & restore MySQL, not using mysqldump

    One big pain in some cases is trying to restore a MySQL dump on a server where you don't have shell access and don't have phpMyAdmin installed. The easiest way I found to handle this was using PHP. Check out the following article on how to restore a MySQL dump file using PHP:

    [url]http://www.swhistlesoft.com/blog/33-restoring-mysql-dump-with-php[/url]
    Mike Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139