SQL database backup and restoration command

Source: Internet
Author: User

1. Open the MSDTC Service of the local SQL Server
2. Dial the number to the remote server (modem-to-modem)
3. Add a remote server locally:
Exec sp_addmediaserver @ server = '192. 168.2.44'
Exec sp_add1_srvlogin @ rmtsrvname = '192. 168.2.44 ',
@ Useself = false,
@ Locallogin = 'sa ',
@ Rmtuser = 'sa ',
@ Rmtpassword = null
4. directly use SQL statements to transmit data
Select * from [192.168.2.44]. zlsgl. dbo. t_cby update [192.168.2.44]. zlsgl. dbo. t_cby set xm = rtrim (xm) + '1' where bh = 4
5. Close the connection after completion:
Sp_droplinkedsrvlogin @ rmtsrvname = '192. 168.2.44 ', @ locallogin = 'sa'
Sp_dropserver @ server = '2017. 192.

Or use the connection Server:
EXEC sp_addmediaserver
'Alias ',
'',
'Msdasql ',
NULL,
NULL,
'Driver = {SQL Server}; SERVER = remote name; UID = user; PWD = password ;'
GO
Then you can:
Select * from alias. Database Name. dbo. Table Name
Insert database name. dbo. Table Name select * from alias... database name. dbo. Table Name
Select * into database name. dbo. New table name from alias... database name. dbo. Table Name
Go

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.