Sqlserver remote backup and recovery

Source: Internet
Author: User
-- The following statement must be executed one by one in the query analyzer. Delete the annotation mark "--" run, and then add "--". Then, execute the next statement.
-- Step 1: create a shared folder on the backup machineProgramCode(Or cmd window)
-- Master .. xp_mongoshell 'md D: \ sqlbak'
-- Master.. xp_mongoshell 'net share sqlbak = D: \ sqlbak'

-- Step 2: Establish a shared credit relationship
-- Exec master.. xp_mongoshell 'net use \ 192.168.1.101 \ sqlbak 2008/User: domain \ wufeng1'

-- Step 3: Back up the database
-- Backup database mxsoftoa to disk = '\ 192.168.1.101 \ sqlbak \ mxsoftoa. Bak'
-- Differential backup
-- Backup database mxsoftoa to disk = '\ 192.168.1.101 \ sqlbak \ mxsoftoa. Bak' with differential

-- Step 4: delete shared folders and call them in program code (or in the CMD window)
-- Master.. xp_shareshell 'net share sqlbak/delete'

-- Step 5: Restore the database
-- Restore database mxsoftoa from disk = '\ 192.168.1.101 \ sqlbak \ mxsoftoa. Bak'
-- Differential recovery
-- Restore database mxsoftoa from disk = '\ 192.168.1.101 \ sqlbak \ mxsoftoa. Bak' with norecovery

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.