SQL SERVER database backup and recovery using WEB (ASP)

Source: Internet
Author: User
 
<HTML>
<HEAD>
<TITLE> SQL Server database backup and recovery </TITLE>
<Meta http-equiv = "Content-Type" content = "text/html; charset = gb2312">
</HEAD>
<BODY>
<Form method = "post" name = myform>
Select operation: <input type = "radio" NAME = "act" id = "act_backup" value = "backup"> <label for = act_backup> backup </label>
<Input type = "radio" NAME = "act" id = "act_restore" value = "restore"> <label for = act_restore> restore </label>
<Br> database NAME: <input type = "text" NAME = "databasename" value = "<% = request (" databasename ") %>">
<Br> file path: <input type = "text" NAME = "bak_file" value = "c: $ 1.bak"> (backup or recovery file path) <br>
<Input type = "submit" value = "OK">
</Form>
<%
'SQL Server database backup and recovery!
'Eva @ 2004-4-2
'Http: // www.51windows. Net
Dim sqlserver, sqlname, sqlpassword, sqlLoginTimeout, databasename, bak_file, act
Sqlserver = "localhost" 'SQL server
Sqlname = "sa" 'user name
Sqlpassword = "sa" 'password
SqlLoginTimeout = 15' login timeout
Databasename = trim (request ("databasename "))
Bak_file = trim (request ("bak_file "))
Bak_file = replace (bak_file, "$1", databasename)
Act = lcase (request ("act "))
If databasename = "" then
Response. write "input database name"
Else
If act = "backup" then
Set srv = Server. CreateObject ("SQLDMO. SQLServer ")
Srv. LoginTimeout = sqlLoginTimeout
Srv. Connect sqlserver, sqlname, sqlpassword
Set bak = Server. CreateObject ("SQLDMO. Backup ")
Bak. Database = databasename
Bak. Devices = Files
Bak. Files = bak_file
Bak. SQLBackup srv
If err. number> 0 then
Response. write err. number & "<font color = red> <br>"
Response. write err. description & "</font>"
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.