ml_qa_getstoreproperty

Returns a client message store property.

Parameters
Item Description Remarks
1 Property name VARCHAR(128)
Return value

The property value as LONG VARCHAR.

Remarks

Client message store properties are readable from every connection to this client message store.

See also
Example

The following example gets the current synchronization policy of this message store and outputs it to the database server messages window:

begin
    declare @policy varchar(128);
    set @policy = ml_qa_getstoreproperty( 'policy' );
    message 'the current policy for synchronizing this message store is ' || @policy;
end