Data Replication solution between tables with different database structures on the two servers !!!

Source: Internet
Author: User

Http://www.uipower.com/bbs/thread-35773-1-1.html

 

/* Data operations between different Server databases */

-- Create a linked server

Exec sp_addmediaserver 'itsv
','
',' Sqloledb
',' Remote Server name or IP address
'

Exec sp_add1_srvlogin 'itsv
', 'False'
', Null,
'User name
',' Password
'
-- Query example

Select
* From itsv. Database Name. DBO. Table Name

-- Import example

Select
* Into table
From itsv. Database Name. DBO. Table Name

-- Delete the linked server when it is no longer in use

Exec sp_dropserver 'itsv
', 'Droplogins
'

-- Connect to remote/LAN data (OpenRowSet/openquery/OpenDataSource)

-- 1. OpenRowSet

-- Query example

Select
* From
OpenRowSet (
'Sqloledb
',' SQL Server Name
';' User Name
';' Password
', Database name. DBO. Table name)

-- Generate a local table

Select
* Into table
From
OpenRowSet (
'Sqlodb ',
'SQL Server Name
';' User Name
';' Password
', Database name. DBO. Table name)

-- Import a local table to a remote table

Insert
OpenRowSet (
'Sqlodb ',
'SQL Server Name
';' User Name
';' Password
', Database name. DBO. Table name)

Select
* From local table

-- Update local table

Update B

Set B. Column A = A. Column

From
OpenRowSet (
'Sqlodb ',
'SQL Server Name
';' User Name
';' Password
', Database name. DBO. Table Name) as
Inner
Join local Table B

On a. column1 = B. column1

-- Create a connection for openquery usage

-- First create a connection to create a linked server

Exec sp_addmediaserver 'itsv
','
',' Sqloledb
',' Remote Server name or IP address
'

-- Query

Select
*

From
Openquery (itsv, 'select * from database. DBO. Table Name
')

-- Import a local table to a remote table

Insert
Openquery (itsv, 'select * from database. DBO. Table Name
')

Select
* From local table

-- Update local table

Update B

Set B. Column B = A. Column B

From
Openquery (itsv, 'select * from database. DBO. Table Name
') As

Inner
Join local Table B
On a. Column A = B. Column

-- 3. OpenDataSource/OpenRowSet

Select *

From OpenDataSource (
'Sqloledb
', 'Data source = IP/servername; user id = login name Password = Password
'). Test. DBO. roy_ta


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.