国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 數(shù)據(jù)庫 > SQL Server > 正文

sql server 跨數(shù)據(jù)庫調(diào)用存儲過程

2024-08-31 00:55:58
字體:
供稿:網(wǎng)友
sql server 跨數(shù)據(jù)庫調(diào)用存儲過程

A庫存儲過程:

create PROCEDURE [dbo].[spAAAForTest](                            @UserName   nvarchar(20) =null ,    @LoginPwd nvarchar(60)  =null)ASBEGIN    select N'A' AS a    , N'B' AS B    , N'C' AS C        ;END

同一臺服務(wù)器實例,A,B兩個數(shù)據(jù)庫, 在B庫的存儲過程中,調(diào)用A庫的存儲過程

B庫:

ALTER PROCEDURE [dbo].[spAAAForTest2](                            @UserName   nvarchar(20) =null ,    @LoginPwd nvarchar(60)  =null)ASBEGIN   declare @sql nvarchar(500);   set @sql = N' exec DB_A.dbo.spAAAForTest ';    exec  sp_executesql @sqlEND

A,B兩個數(shù)據(jù)庫,不在同一臺服務(wù)器實例, 在B庫的存儲過程中,調(diào)用A庫的存儲過程

B庫:

ALTER PROCEDURE [dbo].[spAAAForTest2](                            @UserName   nvarchar(20) =null ,    @LoginPwd   nvarchar(60)  =null)ASBEGIN   declare @sql nvarchar(500);   set @sql = N' exec OPENDATASOURCE(''SQLOLEDB'',''Data Source=SERVER-123/MSSQL2008R2;User ID=sa;PassWord=sa'').DB_A.dbo.spAAAForTest ';   exec  sp_executesql @sqlEND

--------------- 在跨服務(wù)器調(diào)用時,所使用OPENDATASOURCE 遭遇如下信息時

消息 15281,級別 16,狀態(tài) 1,第 1 行

SQL Server blocked access to STATEMENT 'OpenRowset/OpenDatasource' of component 'Ad Hoc Distributed Queries'

because this component is turned off as part of the security configuration for this server.

A system administrator can enable the use of 'Ad Hoc Distributed Queries' by using sp_configure.

For more information about enabling 'Ad Hoc Distributed Queries',

see "Surface Area Configuration" in SQL Server Books Online.

通過如下方式進(jìn)行設(shè)置:

exec sp_configure 'show advanced options',1reconfigureexec sp_configure 'Ad Hoc Distributed Queries',1reconfigure

---------------


發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 舒兰市| 宁陵县| 邮箱| 铜梁县| 施秉县| 缙云县| 响水县| 大庆市| 息烽县| 民丰县| 灵山县| 临桂县| 宜州市| 湘潭市| 梅州市| 安仁县| 南安市| 司法| 和平区| 息烽县| 临海市| 德令哈市| 新疆| 庆云县| 乌什县| 黔南| 宣恩县| 务川| 洛扎县| 新邵县| 周宁县| 泗阳县| 内丘县| 乾安县| 长汀县| 马龙县| 乌兰县| 应用必备| 诏安县| 宿迁市| 侯马市|