sp_posttracertoken (Transact-SQL)

此过程将跟踪令牌发布到发布服务器的事务日志中,并开始滞后时间统计信息的跟踪进程。如果将跟踪令牌写入了事务日志,则当日志读取器代理选中该令牌,以及分发代理应用该令牌时,均会记录信息。此存储过程在发布服务器的发布数据库中执行。有关详细信息,请参阅为事务复制测量滞后时间和验证连接

主题链接图标Transact-SQL 语法约定

语法

sp_posttracertoken [ @publication = ] 'publication' 
    [ , [ @tracer_token_id = ] tracer_token_id OUTPUT
    [ , [ @publisher = ] 'publisher' 

参数

  • [ @publication= ] 'publication'
    要测量滞后时间的发布的名称。publication 的数据类型为 sysname,无默认值。
  • [ @publisher= ] 'publisher'
    指定非 Microsoft SQL Server 发布服务器。publisher 的数据类型为 sysname,默认值是 NULL,不应为 SQL Server 发布服务器指定该参数。

返回代码值

0(成功)或 1(失败)

备注

sp_posttracertoken 用于事务性复制。

权限

只有 sysadmin 固定服务器角色的成员或 db_owner 固定数据库角色的成员才能执行 sp_posttracertoken

示例

DECLARE @publication AS sysname;
DECLARE @tokenID AS int;
SET @publication = N'AdvWorksProductTran'; 

USE [AdventureWorks]

-- Insert a new tracer token in the publication database.
EXEC sys.sp_posttracertoken 
  @publication = @publication,
  @tracer_token_id = @tokenID OUTPUT;
SELECT 'The ID of the new tracer token is ''' + 
    CONVERT(varchar,@tokenID) + '''.'
GO

-- Wait 10 seconds for the token to make it to the Subscriber.
WAITFOR DELAY '00:00:10';
GO

-- Get latency information for the last inserted token.
DECLARE @publication AS sysname;
DECLARE @tokenID AS int;
SET @publication = N'AdvWorksProductTran'; 

CREATE TABLE #tokens (tracer_id int, publisher_commit datetime)

-- Return tracer token information to a temp table.
INSERT #tokens (tracer_id, publisher_commit)
EXEC sys.sp_helptracertokens @publication = @publication;
SET @tokenID = (SELECT TOP 1 tracer_id FROM #tokens
ORDER BY publisher_commit DESC)
DROP TABLE #tokens

-- Get history for the tracer token.
EXEC sys.sp_helptracertokenhistory 
  @publication = @publication, 
  @tracer_id = @tokenID;
GO

请参阅

其他资源

How to: Measure Latency and Validate Connections for Transactional Replication (Replication Transact-SQL Programming)

帮助和信息

获取 SQL Server 2005 帮助