Oracle® TimesTen In-Memory Database Reference Release 11.2.1 Part Number E13069-03 |
|
|
View PDF |
Description
Checks if the number of rows in global cache groups match number of rows in the ownership tables. Call this procedure only when the cache grid is quiet.
This procedure requires the CACHE_MANAGER privilege.
Syntax
ttGridCheckOwner(['cvName', 'cvOwner'])
Parameters
ttGridCheckOwner has the optional parameter:
Parameter | Type | Description |
---|---|---|
cvName |
TT_VARCHAR (30) | The name of the cache group to be checked...name and owner of cache group that need to be checked. If null, all cache groups are checked. |
cvOwner |
TT_VARCHAR (30) | .The owner of the cache group to be checked. If null, all cache groups are checked. |
Result set
ttGridCheckOwner displays no results.
Example
To get information on the mygroup
cache group, owned by user terry, use:
CALL ttGridCheckOwner ('mygroup', 'terry');
To get information on all cache groups, use:
CALL ttGridCheckOwner();
See also