Monitor option settings by using the sa_server_option system procedure with the either OptionWatchList or OptionWatchAction property to specify database server behavior when particular database option values are changed.
You must have the SERVER OPERATOR system privilege.
The option values are monitored.
Call the following stored procedure to instruct the database server to monitor the database options automatic_timestamp, float_as_double, and tsql_hex_constant:
CALL dbo.sa_server_option( 'OptionWatchList','automatic_timestamp,float_as_double,tsql_hex_constant' );
Call the following stored procedure to instruct the database server to return an error if an attempt is made to set an option specified in the OptionWatchList property:
CALL dbo.sa_server_option( 'OptionWatchAction','ERROR' );