ASE Replicator configuration parameters allow you to customize or “tune” some of the functionality of ASE Replicator. See “ASE Replicator configuration parameters” for more information.
You can use sp_configrep to:
Get information about configuration parameters
Find the current value of a configuration parameter
Change the value of a configuration parameter
You can also set or change connection configuration parameters that affect the behavior of ASE Replicator database connections. See “Configuring a database connection” for more information.
To get information about all configuration parameters, use sp_configrep with no parameter:
sp_configrep
To find the current value of a configuration parameter, use sp_configrep with the name of the configuration parameter:
sp_configrep log_directory
To change the value of a configuration parameter, use sp_configrep with the name of the configuration parameter and the value you want to set:
sp_configrep log_directory, "/sybase/mylogs"