|
|
|
สอบถาม C#.net Datagrid แล้วก็ SQLServer2008 ในเรื่อง Restore DB ครับ |
|
|
|
|
|
|
|
Code (C#)
// Button Restore
private void btnRestore_Click(object sender, EventArgs e)
{
restore("TWKBank", txtPathRestore.Text);
MessageBox.Show("กู้ข้อมูลในระบบเรียบร้อยแล้วครับ", "ผลการทำงาน", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
// Function Restore
void restore(string database, string path)
{
string ConnString = @"Data Source=localhost;Persist Security Info=True;User ID=sa;Password=1234";
SqlConnection connect = new SqlConnection(ConnString);
connect.Open();
SqlCommand sqlCommand = new SqlCommand(@"RESTORE DATABASE [" + database + "] FROM DISK = N'" + path + "' WITH FILE = 1, NOUNLOAD, REPLACE, STATS = 10", connect);
sqlCommand.CommandTimeout = 40000000;
sqlCommand.ExecuteNonQuery();
}
เนี่ย code ในส่วน Restore DB แล้วมันมีปัญหาครับ
|
|
|
|
|
Date :
2010-08-01 14:06:14 |
By :
LunaziA |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|