Oracle® TimesTen In-Memory Database Reference Release 11.2.1 Part Number E13069-03 |
|
|
View PDF |
Description
Displays information about the specified cache grid or all cache grids.
This procedure requires the CACHE_MANAGER privilege.
Syntax
ttGridInfo(['gridName'])
Parameters
ttGridInfo has the optional parameter:
Parameter | Type | Description |
---|---|---|
gridName |
TT_VARCHAR (30) | If gridName is specified, displays information about the specified grid. Otherwise, displays information about all grids. |
Result set
ttGridInfo displays information about the cache grid.
Column | Type | Description |
---|---|---|
gridName |
TT_VARCHAR (30) | The name of the grid specified |
cacheAdminID |
TT_VARCHAR (30)
NOT NULL |
The cache administration user ID associated with the grid. |
platform |
TT_VARCHAR (100) | The operating system platform on which the grid is operating. |
major1, major2, major3 |
TT_VARCHAR (10) for each field | The major TimesTen release associated with the grid. For example, release 11.2.1 is represented as 11, 2, 1. |
Example
To get information on the mygrid
cache grid, use:
CALL ttGridInfo ('mygrid'); < MYGRID, CACHEUSER, Linux Intel x86, 32-bit, 11, 2, 1 >
To get information on all grids, use:
CALL ttGridInfo();
See also