Collection Contents 上一页 下一页 PDF

SQL Remote 用户指南

实用程序和选项参考

SQL Remote 事件挂接过程


以下存储过程名称和参数提供用于在 SQL Remote 数据库自定义同步的接口。

注意 

除非另有规定,否则以下内容适用于事件挂接过程:

#hook_dict 表  

调用挂接前用以下 CREATE 语句创建 #hook_dict 表:

CREATE table #hook_dict(
name VARCHAR(128) NOT NULL UNIQUE,
value VARCHAR(255) NOT NULL )

消息代理使用 #hook_dict 表将值传送给挂接函数;挂接函数使用 #hook_dict 表将值传送回消息代理。


sp_hook_dbremote_begin 和 sp_hook_ssrmt_begin
sp_hook_dbremote_end 和 sp_hook_ssrmt_end
sp_hook_dbremote_shutdown 和 sp_hook_ssrmt_shutdown
sp_hook_dbremote_receive_begin 和 sp_hook_ssrmt_receive_begin
sp_hook_dbremote_receive_end 和 sp_hook_ssrmt_receive_end
sp_hook_dbremote_send_begin 和 sp_hook_ssrmt_send_begin
sp_hook_dbremote_send_end 和 sp_hook_ssrmt_send_end
sp_hook_dbremote_message_sent 和 sp_hook_ssrmt_message_sent
sp_hook_dbremote_message_missing 和 sp_hook_ssrmt_message_missing
sp_hook_dbremote_message_apply_begin 和 sp_hook_ssrmt_message_apply_begin
sp_hook_dbremote_message_apply_end 和 sp_hook_ssrmt_message _apply_end

Collection Contents 上一页 下一页 PDF