master database only
sysconfigures contains one row for each configuration parameter that can be set by the user.
The columns for sysconfigures are:
Name |
Datatype |
Description |
---|---|---|
config |
smallint |
Configuration parameter number. |
value |
int |
The user-modifiable value for the parameter with integer datatype. Its value is 0 for the parameters with character datatype. |
comment |
varchar(255) |
Name of the configuration parameter. |
status |
int |
Value that represents the type of configuration parameter. For details, see Table 1-3. |
name |
varchar(255) null |
Name of the configuration parameter (the same value as comment). |
parent |
smallint null |
Configuration parameter number of the parent; if more than one parent, the additional parent numbers are stored in sysattributes. |
value2 |
varchar(255) null |
The user-modified value for the parameter with the character datatype. Its value is NULL for parameters with integer datatype. value2 is also used to store the pool size of a buffer pool. |
value3 |
int null |
Stores the wash size of a buffer pool. |
value4 |
int null |
Stores the asynchronous prefetch percents of a buffer pool, or -1 where an unspecified or default value. |
Table 1-3 provides information about the status column.
Unique clustered index on name, parent, config
Nonclustered index on config
Nonclustered index on parent, config
Copyright © 2005. Sybase Inc. All rights reserved. |