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