Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
返回客户端消息存储库属性。
LONG VARCHAR 形式的属性值。
可从此客户端消息存储库的每个连接读取其属性。
下面的示例获取了此消息存储库的当前同步策略并将其输出到数据库服务器消息窗口:
begin declare @policy varchar(128); set @policy = ml_qa_getstoreproperty( 'policy' ); message 'the current policy for synchronizing this message store is ' || @policy; end