[Recover] Using sqldmo to back up and restore a database (VB & ASP)

Source: Internet
Author: User

VB:
Reference Microsoft sqldmo Object Library first

 Private Objsqlserver As   New  Sqldmo. sqlserver  Private   Sub  Cmdbackup_click ()  Dim Objbackup As   New  Sqldmo. Backup objbackup. Database = "  Pubs  " Objbackup. medianame = "  C: \ MSSQL7 \ backup \ pubs. Bak  "   '  If you backup to tape, you can use  '  Objbackup. medianame = "\. \ tape0" Objbackup. mediadegion = "  Back of pubs  "  Objbackup. sqlbackup (objsqlserver)  End sub   Private  Sub  Cmdrestore_click ()  Dim Objrestore As   New  Sqldmo. Restore objrestore. Database = "  Pubs  "  Objrestore. medianame = "  C: \ MSSQL7 \ backup \ pubs. Bak  "  Objrestore. replacedatabase = True Objrestore. sqlrestore (objsqlserver)  End sub   Private   Sub  Form_load () objsqlserver. Connect  "  Localhost  " , "  SA  " , ""   End sub  

ASP:

 Dim  Objsqlserver Set Objsqlserver = server. Createobject ( "  Sqldmo. sqlserver  "  ) Objsqlserver. Connect  "  Localhost  " , "  SA  " , ""   Private   Sub  Backup ()  Dim Objbackup  Set Objbackup = server. Createobject ( "  Sqldmo. Backup  "  ) Objbackup. Database = "  Pubs  "  Objbackup. medianame = "  C: \ MSSQL7 \ backup \ pubs. Bak  "  Objbackup. mediadegion = " Back of pubs  "  Objbackup. sqlbackup (objsqlserver)  End sub   Private   Sub  Cmdrestore_click ()  Dim  Objrestore  Set Objrestore = server. Createobject ( "  Sqldmo. Restore  "  ) Objrestore. Database = " Pubs  "  Objrestore. medianame = "  C: \ MSSQL7 \ backup \ pubs. Bak  "  Objrestore. replacedatabase = True  Objrestore. sqlrestore (objsqlserver)  End sub  

 

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.