Add user and login for fault monitor

When the HA agent fault monitor, ase_monitor, runs thorough probe, it:

  1. Connects to the Adaptive Server.

  2. Creates a table, inserts an entry into the table, updates the table, and deletes the table.

  3. Disconnects from Adaptive Server after the cycle count reaches the value specified by the Adaptive Server resource property Connect_cycle_count.

Create or specify a special user and login for the monitor to perform a thorough probe operation. Use isql to connect to the data servers and issue:

sp_addlogin <user for monitoring ase>, <password>
sp_adduser <user for monitoring ase>

For example:

sp_addlogin ase_monitor_user,ase_monitor_user_password
sp_adduser ase_monitor_user

NoteDuring Adaptive Server configuration, the System Administrator should take into account that the user and login used for probe actually reduces by one the total number of connections available for other purposes. That is, if the total number of connections is 25, the effective number of connections available for other purposes will be 24, as one is used by the fault monitor probe.