Returns a client message store property.
Item |
Description |
Remarks |
---|---|---|
1 |
Property name |
VARCHAR(128) |
The property value as LONG VARCHAR.
Client message store properties are readable from every connection to this client message store.
The following example gets the current synchronization policy of this message store and outputs it to the database console:
begin declare @policy varchar(128); set @policy = ml_qa_getstoreproperty( 'policy' ); message 'the current policy for synchronizing this message store is ' || @policy; end