zoukankan      html  css  js  c++  java
  • Distributed1:Linked Server 添加和删除

    A linked server allows for access to distributed, heterogeneous queries against OLE DB data sources. After a linked server is created by using sp_addlinkedserver, distributed queries can be run against this server. If the linked server is defined as an instance of SQL Server, remote stored procedures can be executed.

    1,添加Linked Server

    使用 sys.sp_addlinkedserver 添加Linked Server,除了必须在本地自定义一个Linked Server的Alias,还必须指定 Linked Server的Product name,Provider name,Data Source, location, provider string 和 catalog 参数。

    复制代码
    sp_addlinkedserver [ @server= ] 'server' [ , [ @srvproduct= ] 'product_name' ] 
         [ , [ @provider= ] 'provider_name' ]
         [ , [ @datasrc= ] 'data_source' ] 
         [ , [ @location= ] 'location' ] 
         [ , [ @provstr= ] 'provider_string' ] 
         [ , [ @catalog= ] 'catalog' ] 
    复制代码

    Arguments    

    @server= ] 'server'              

    Is the name of the linked server to create. server is sysname, with no default.

    @srvproduct= ] 'product_name'              

    Is the product name of the OLE DB data source to add as a linked server. product_name is nvarchar(128), with a default of NULL.

    @provider= ] 'provider_name'              

    Is the unique programmatic identifier (PROGID) of the OLE DB provider that corresponds to this data source. provider_name must be unique for the specified OLE DB provider installed on the current computer. provider_name is nvarchar(128), with a default of NULL; however, if provider_name is omitted, SQLNCLI is used. The OLE DB provider is expected to be registered with the specified PROGID in the registry.

    [@catalog= ] 'catalog'              

    Is the catalog to be used when a connection is made to the OLE DB provider. catalog is sysname, with a default of NULL. catalog is passed as the DBPROP_INIT_CATALOG property to initialize the OLE DB provider. When the linked server is defined against an instance of SQL Server, catalog refers to the default database to which the linked server is mapped

    Provider 需要安装,可以从SQL Server 的Linked Servers Catalog下查看已经安装的Providers。

    添加SQL Server 作为Linked Server,将@srvproduct 设置为 N'' 字符。

    复制代码
    --add linked server
    exec sys.sp_addlinkedserver @server= N'RemoteServerAlias'
    ,@srvproduct= N'' ,@provider= N'SQLNCLI' ,@datasrc= N'RemoteServerNameSQLServerInstanceName' ,@location= null ,@provstr= null ,@catalog= N'Remote_DB_Name'
    复制代码

    2,使用 sys.servers 查看添加的Linked Server

    sys.servers Contains a row per linked or remote server registered, and a row for the local server that has server_id = 0.

    When you create a linked or remote server, SQL Server creates a default login mapping to the public server role. This means that by default, all logins can view all linked and remote servers. To restrict visibility to these servers, remove the default login mapping by executing sp_droplinkedsrvlogin and specifying NULL for the locallogin parameter.

    select *
    from sys.servers
    where name=N'ExcelDataSource'

    3,使用 sys.sp_dropserver 删除Linked Server

    Syntax

    sp_dropserver [ @server = ] 'server' 
         [ , [ @droplogins = ] { 'droplogins' | NULL} ]

    @droplogins = 'droplogins' | NULL

    Indicates that related remote and linked server logins for server must also be removed if droplogins is specified. @droplogins is char(10), with a default of NULL.

    在删除Linked Server时,将login一起删除。

    EXEC sys.sp_dropserver @server=N'ExcelDataSource', @droplogins='droplogins'
    GO


    参考doc:

    MSDN:sp_addlinkedserver (Transact-SQL)

  • 相关阅读:
    方法的重载理解
    JAVA 三种循环的总结
    模拟时间倒计时
    制作漂浮广告效果
    js+css+html实现抽奖小程序
    将系统时间转换为汉字表示的四种方法
    简单的导航栏
    模仿光标闪烁,光标移动,自动切换背景
    sublime插件emmet安装和使用
    现在有一张半径为r的圆桌,其中心位于(x,y),现在他想把圆桌的中心移到(x1,y1)。每次移动一步,都必须在圆桌边缘固定一个点然后将圆桌绕这个点旋转。问最少需要移动几步。
  • 原文地址:https://www.cnblogs.com/xieyulin/p/7050656.html
Copyright © 2011-2022 走看看