ASP. NET Backup recovery database

Source: Internet
Author: User
Core technologies:
Using system. Data. sqlclient;
Using system. IO;
String sqlstr1 = "Server = (local); database = Master; uid = sa; Pwd = ";
String sqlstr2 = "Exec sp_helpdb ";
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 '";

1. Front-end

<Table>
<Tr>
<TD style = "width: 100px"> <span style = "font-size: 9pt"> operational data warehouse </span> </TD>
<TD> <asp: dropdownlist id = "dropdownlist1" runat = "server" font-size = "9pt" width = "124px"> </ASP: dropdownlist> </TD>
<TD style = "width: 100px"> </TD>
</Tr>
<Tr>
<TD style = "width: 100px"> <span style = "font-size: 9pt"> Backup name and location </span> </TD>
<TD style = "width: 100px"> <asp: textbox id = "textbox1" runat = "server" font-size = "9pt" width = "117px"> </ASP: textbox> </TD>
<TD style = "width: 100px"> <span style = "font-size: 9pt; color: # ff3300"> (for example, D: \ beifen) </span> </TD>
</Tr>
<Tr>
<TD colspan = "3"> <asp: button id = "button1" runat = "server" font-size = "9pt" onclick = "button#click" text = "backup database"/> </TD>
</Tr>
</Table>

2. Background

Using system. Data. sqlclient;
Using system. IO;

Public partial class _ default: system. Web. UI. Page
{
Protected void page_load (Object sender, eventargs E)
{
If (! Ispostback)
{
String sqlstr1 = "Server = (local); database = Master; uid = sa; Pwd = ";
String sqlstr2 = "Exec sp_helpdb ";
Sqlconnection con = new sqlconnection (sqlstr1 );
Con. open ();
Sqlcommand COM = new sqlcommand (sqlstr2, con );
Sqldatareader DR = com. executereader ();
This. dropdownlist1.datasource = Dr;
This. dropdownlist1.datatextfield = "name ";
This. dropdownlist1.databind ();
Dr. Close ();
Con. Close ();
}
}
Protected void button#click (Object sender, eventargs E)
{
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 ("<script language = JavaScript> alert ('this file already exists. Please input it again! '); Location = 'default. aspx' </SCRIPT> ");
Return;
}
Sqlcommand COM = new sqlcommand (sqlstr2, con );
Com. executenonquery ();
Response. Write ("<script language = JavaScript> alert ('data backed up successful! '); Location = 'default. aspx' </SCRIPT> ");
}
Catch (Exception error)
{
Response. Write (error. Message );
Response. Write ("<script language = JavaScript> alert ('data backup failed! ') </SCRIPT> ");
}
Finally
{
Con. Close ();
}
}
}

Restore sqlserver
Core technologies:
String sqlstr1 = "Server = (local); database = '" + this. dropdownlist1.selectedvalue + "'; uid = sa; Pwd = ";
String sqlstr2 = "use master Restore database" + dbname + "from disk = '" + path + "'";

1. Front-end
<Table>
<Tr>
<TD style = "width: 100px; Height: 21px"> <span style = "font-size: 9pt"> operational data warehouse </span> </TD>
<TD> <asp: dropdownlist id = "dropdownlist1" runat = "server" font-size = "9pt" width = "124px"> </ASP: dropdownlist> </TD>
<TD style = "width: 100px; Height: 21px"> </TD>
</Tr>
<Tr>
<TD style = "width: 100px"> <span style = "font-size: 9pt"> operational data warehouse </span> </TD>
<TD style = "width: 100px"> <asp: fileupload id = "fileupload1" runat = "server" font-size = "9pt" width = "pixel PX"/> </TD>
<TD style = "width: 100px">
</TD>
</Tr>
<Tr>
<TD colspan = "3"> <asp: button id = "button1" runat = "server" font-size = "9pt" onclick = "button#click" text = "Restore database"/> </TD>
</Tr>
</Table>
2. Background

Using system. Data. sqlclient;
Using system. IO;

Public partial class _ default: system. Web. UI. Page
{
Protected void page_load (Object sender, eventargs E)
{
If (! Ispostback)
{
String sqlstr1 = "Server = (local); database = Master; uid = sa; Pwd = ";
String sqlstr2 = "Exec sp_helpdb ";
Sqlconnection con = new sqlconnection (sqlstr1 );
Con. open ();
Sqlcommand COM = new sqlcommand (sqlstr2, con );
Sqldatareader DR = com. executereader ();
This. dropdownlist1.datasource = Dr;
This. dropdownlist1.datatextfield = "name ";
This. dropdownlist1.databind ();
Dr. Close ();
Con. Close ();
}
}

Protected void button#click (Object sender, eventargs E)
{
String Path = This. fileupload1.postedfile. filename; // obtain the backup path and database name.
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 ("<script language = JavaScript> alert ('data restored successfully! '); Location = 'default. aspx' </SCRIPT> ");
}
Catch (Exception error)
{
Response. Write (error. Message );
Response. Write ("<script language = JavaScript> alert ('data restoration failed! ') </SCRIPT> ");
}
Finally
{
Con. Close ();
}
}
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.