1.1.1

Table Of Contents
SYS.SET_EVICTION_HEAP_PERCENTAGE_SG
Sets the percentage of heap space that triggers members of one or more SQLFire server groups to perform LRU
eviction on tables that are congured for eviction.
This procedure sets the heap percentage for all members of one or more server groups, or for all data stores in
the SQLFire cluster. You can optionally set the global heap percentage only for the local SQLFire data store by
using SYS.SET_EVICTION_HEAP_PERCENTAGE on page 617. When the used heap reaches the percentage,
SQLFire begins to evict rows, using a LRU algorithm, from tables that are congured for eviction. Create a
Table with Eviction Settings on page 192 describes the eviction process.
Syntax
SYS.SET_EVICTION_HEAP_PERCENTAGE_SG (
IN PERCENTAGE REAL NOT NULL
IN SERVER_GROUPS VARCHAR(32762)
}
PERCENTAGE
The percentage of used heap space that triggers eviction for data stores in the specied server
group(s).
SERVER_GROUPS
A comma-separated list of server groups on which to apply the heap percentage setting. If you
specify NULL, the command is distributed to all data stores (irrespective of dened server
groups).
Example
This command triggers eviction on any member of the "overows" server group when that
member's heap reaches 85%:
call sys.set_eviction_heap_percentage_sg (85, 'overflows');
This command triggers eviction on all SQLFire data stores when that member's heap reaches
85%:
call sys.set_eviction_heap_percentage_sg (85, null);
WAN, Statistics, and User Configuration Procedures
WAN conguration procedures start and stop gateway senders. Also, procedures to enable statement and time
statistics, and to display congured BUILTIN users.
SYS.CHANGE_PASSWORD
Changes the password of an existing BUILTIN user.
Syntax
SYS.CHANGE_PASSWORD (
IN USER_ID VARCHAR(128)
IN OLDPASSWORD VARCHAR(128)
IN NEWPASSWORD VARCHAR(128)
)
USER_ID
The name of the existing user. See SYS.SHOW_USERS on page 622.
OLDPASSWORD
The existing password of the specied USER_ID, or a null or empty string for the old password
(if an Admin user is changing the password of another user).
vFabric SQLFire User's Guide618
vFabric SQLFire Reference