Calculates and displays initial values for the buffer pool size, database configuration and database manager configuration parameters, with the option of applying these recommended values.
SYSADM
Database
>>-AUTOCONFIGURE--+---------------------------------------+-----> | .----------------------------. | | V | | '-USING----input-keyword--param-value-+-' >--APPLY--+-DB ONLY--+-----------------+----+------------------>< | '-ON CURRENT NODE-' | +-DB AND DBM--+-----------------+-+ | '-ON CURRENT NODE-' | '-NONE----------------------------'
Keyword | Valid values | Default value | Explanation |
---|---|---|---|
mem_percent | 1-100 | 25 | Percentage of instance memory that is assigned to the database. However, if the CREATE DATABASE command invokes the configuration advisor and you do not specify a value for mem_percent, the percentage is calculated based on memory usage in the instance and the system up to a maximum of 25% of the instance memory. |
workload_type | simple, mixed, complex | mixed | Simple workloads tend to be I/O intensive and mostly transactions, whereas complex workloads tend to be CPU intensive and mostly queries. |
num_stmts | 1-1 000 000 | 10 | Number of statements per unit of work |
tpm | 1-200 000 | 60 | Transactions per minute |
admin_priority | performance, recovery, both | both | Optimize for better performance (more transactions per minute) or better recovery time |
is_populated | yes, no | yes | Is the database populated with data? |
num_local_apps | 0-5 000 | 0 | Number of connected local applications |
num_remote_apps | 0-5 000 | 10 | Number of connected remote applications |
isolation | RR, RS, CS, UR | RR | Maximum isolation level of applications connecting to this database (Repeatable Read, Read Stability, Cursor Stability, Uncommitted Read). It is only used to determine values of other configuration parameters. Nothing is set to restrict the applications to a particular isolation level and it is safe to use the default value. |
bp_resizeable | yes, no | yes | Are buffer pools resizeable? |
The buffer pool changes are always applied to the system catalogs. Thus, all nodes are affected. The ON CURRENT NODE option does not matter for buffer pool recommendations.