sp_posttracertoken (Transact-SQL)
此过程将跟踪令牌发布到发布服务器的事务日志中,并开始滞后时间统计信息的跟踪进程。如果将跟踪令牌写入了事务日志,则当日志读取器代理选中该令牌,以及分发代理应用该令牌时,均会记录信息。此存储过程在发布服务器的发布数据库中执行。有关详细信息,请参阅为事务复制测量滞后时间和验证连接。
语法
sp_posttracertoken [ @publication = ] 'publication'
[ , [ @tracer_token_id = ] tracer_token_id OUTPUT
[ , [ @publisher = ] 'publisher'
参数
- [ @publication= ] 'publication'
要测量滞后时间的发布的名称。publication 的数据类型为 sysname,无默认值。
- [ @tracer_token_id= ] tracer_token_idOUTPUT
插入的跟踪令牌的 ID。tracer_token_id 的数据类型为 int,默认值为 NULL,它是一个 OUTPUT 参数。此值可用于执行 sp_helptracertokenhistory (Transact-SQL) 或 sp_deletetracertokenhistory (Transact-SQL),而不用先执行 sp_helptracertokens (Transact-SQL)。
- [ @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