3

MySQL データベースをバックアップする手順があります。また、別の MySQL サーバーもあります。この手順は一部の MySQL サーバーでは機能しますが、一部のサーバーでは正しく機能せず、1kb のサイズのバックアップ ファイルが作成されます。

コード

public void DatabaseBackup(string ExeLocation, string DBName)
{
    try
    {
        string tmestr = "";
        tmestr = DBName + "-" + DateTime.Now.ToString("hh.mm.ss.ffffff") + ".sql";
        tmestr = tmestr.Replace("/", "-");
        tmestr = "c:/" + tmestr;
        StreamWriter file = new StreamWriter(tmestr);
        ProcessStartInfo proc = new ProcessStartInfo();
        string cmd = string.Format(@"-u{0} -p{1} -h{2} {3}", "uid", "pass", "host", DBName);
        proc.FileName = ExeLocation;
        proc.RedirectStandardInput = false;
        proc.RedirectStandardOutput = true;
        proc.Arguments = cmd;
        proc.UseShellExecute = false;
        proc.CreateNoWindow = true;
        Process p = Process.Start(proc);
        string res;
        res = p.StandardOutput.ReadToEnd();
        file.WriteLine(res);
        p.WaitForExit();
        file.Close();
    }
    catch (IOException ex)
    {

    }
}

何が問題なのか、どうすれば解決できるのか教えてください。

4

2 に答える 2

2

最後に私は答えを得ました。バックアップが必要な MySQL ユーザーまたはデータベースに対する SELECT および LOCK_TABLE 権限が必要です。データベースにこれらの権限を設定した後、そのデータベースの完全バックアップを取ることができます。

于 2013-05-06T13:34:01.367 に答える
0

バックアップ ステートメントはどこにありますか?

データベースをバックアップする最良の方法は次のとおりです。

private void BackupDatabase()
        {
            string time = DateTime.Now.ToString("dd-MM-yyyy");
            string savePath = AppDomain.CurrentDomain.BaseDirectory + @"Backups\"+time+"_"+saveFileDialogBackUp.FileName;
            if (saveFileDialogBackUp.ShowDialog() == DialogResult.OK)
            {
                try {
                        using (Process mySqlDump = new Process())
                        {
                            mySqlDump.StartInfo.FileName = @"mysqldump.exe";
                            mySqlDump.StartInfo.UseShellExecute = false;
                            mySqlDump.StartInfo.Arguments = @"-u" + user + " -p" + pwd + " -h" + server + " " + database + " -r \"" + savePath + "\"";
                            mySqlDump.StartInfo.RedirectStandardInput = false;
                            mySqlDump.StartInfo.RedirectStandardOutput = false;
                            mySqlDump.StartInfo.CreateNoWindow = true;
                            mySqlDump.Start();
                            mySqlDump.WaitForExit();
                            mySqlDump.Close();
                        }
                    }
                    catch (IOException ex)
                    {
                        MessageBox.Show("Connot backup database! \n\n" + ex);
                    }
                MessageBox.Show("Done! database backuped!", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }

幸運を!

于 2013-05-04T14:15:32.793 に答える