sp_gettopologyinfo (Transact-SQL)
适用范围:SQL Server
返回有关对等事务复制拓扑的信息。 在执行此过程之前,请执行 sp_requestpeertopologyinfo 以收集信息。
语法
sp_gettopologyinfo [ [ @request_id = ] request_id ]
[ ; ]
参数
[ @request_id = ] request_id
拓扑状态请求的 ID。 @request_id为 int,默认值为 NULL
. 若要获取 ID,请使用 sp_requestpeertopologyinfo 中的 @request_id OUTPUT 参数,或查询MSpeer_topologyrequest系统表。
结果集
sp_gettopologyinfo
返回单个 XML 列的结果集。 XML 列中的数据与MSpeer_topologyresponse系统表中的数据相同。
返回代码值
0
(成功)或 1
(失败)。
注解
sp_gettopologyinfo
用于对等事务复制。 在执行前sp_gettopologyinfo
执行sp_requestpeertopologyinfo。 这些过程由“配置对等拓扑向导”使用,但如果需要 XML 格式的拓扑信息,也可以直接使用这些过程。 如果更喜欢表格结果,请 查询MSpeer_topologyresponse 系统表。
权限
需要 sysadmin 固定服务器角色的成员身份,或db_owner固定数据库角色的成员身份。