All ACE configuration parameters are configured for the default instance (instance 0). All additional ACE instances, by default, use the parameters configured for the default instance. You can configure the additional ACE instances differently than the default instance, by manually adding the configuration parameters to the T_SYSTEM_CONFIGURATIONS table.
In the T_SYSTEM_CONFIGURATIONS table, the configuration parameters are arranged in a tree-like structure. In the tree, under the 'pslwriter' key, you can find the following:
You can configure a parameter for a specific instance.
For example, all instances have a cycle length of one hour.
You can set instance 5 with the cycle length of two hours. Under the pslwriter key, create a cyclelength parameter and set it to 7200.
select t.sys_config_id, t.sys_config_name from t_system_configurations t where t.sys_config_parent=71 and t.sys_config_name like 'pslwriter%'
select t.sys_config_id, t.sys_config_name, t.sys_config_value from t_system_configurations t where t.sys_config_parent=<SYS_CONFIG_ID of instance 5>
update t_system_configurations t set t.sys_config_value='7200' where t.sys_config_id=<SYS_CONFIG_ID of the parameter>
insert into t_system_configurations t ( SYS_CONFIG_ID, SYS_CONFIG_NAME, SYS_CONFIG_VALUE, SYS_CONFIG_PARENT, MODIFY_DATE ) values ( seq_sla_sys_config.nextval, 'cyclelength', '7200', <SYS_CONFIG_ID of instance 5>, sysdate )
|
Copyright © 2012 CA.
All rights reserved.
|
|