今天小编带领着大家一起来看看这个方法,不知道你们感不感兴趣,就让我们学起来吧。
一、备份SQL Server数据库
string SqlStr1 = "Server=(local);database='" + this.DropDownList1.SelectedValue + "';Uid=sa;Pwd="; string SqlStr2 = "backup database " + this.DropDownList1.SelectedValue + " to disk='" + this.TextBox1.Text.Trim() + ".bak'"; SqlConnection con = new SqlConnection(SqlStr1); con.Open(); try { if (File.Exists(this.TextBox1.Text.Trim())) { Response.Write(""); return; } SqlCommand com = new SqlCommand(SqlStr2, con); com.ExecuteNonQuery(); Response.Write(""); } catch (Exception error) { Response.Write(error.Message); Response.Write(""); } finally { con.Close(); }
|
二、还原SQL Serverajax视频教程数据库
string path = this.FileUpload1.PostedFile.FileName; //获得备份路径及数据库名称 string dbname = this.DropDownList1.SelectedValue; string SqlStr1 = "Server=(local);database='" + this.DropDownList1.SelectedValue + "';Uid=sa;Pwd="; string SqlStr2 = "use master restore database " + dbname + " from disk='" + path + "'"; SqlConnection con = new SqlConnection(SqlStr1); con.Open(); try { SqlCommand com = new SqlCommand(SqlStr2, con); com.ExecuteNonQuery(); Response.Write(""); } catch (Exception error) { Response.Write(error.Message); Response.Write(""); } finally { con.Close(); }
|
看到最后小编要提醒大家一下的啊,还是要自己动手试试,那样才会有收获的呀。课课家教育的平台才会因为你们而变得精彩。
【相关文章】
ASP.NET中使用HtmlArea编辑器
ASP.NET四种页面导航方式的比较与选择
ASP.NET动态生成HTML页面