ncimCache.collects table

The ncimCache.collects table lists all the entities participating in a given collection.

The following table shows the schema for the ncimCache.collects database table.

Table 1. ncimCache.collects database table schema  

Column name

Constraints

Data type

Description

ENTITYID NOT NULL Integer The identifier of an entity. Corresponds to collectingEntityID in the collects table in the NCIM database.
ENTITYNAME NOT NULL String The name of the collecting entity.
MSGTYPE   String The name of the table within the ncimCache database.
collects NOT NULL List of name/value pairs A list of name/value pairs for the entity.
  • ENTITYNAME corresponds to collectedEntityID in the collects table in the NCIM database.
  • SEQUENCE corresponds to sequence in the collects table in the NCIM database.

Format of the data in the ncimCache.collects database table

The following example shows the format of the data in the ncimCache.collects database table, as shown either using an OQL query, or as seen in the NCHOME/var/precision/Store.Cache.ncimCache.collects.DOMAIN file.

{
	ENTITYID=31051;
	ENTITYNAME='SUBNET_OBJECT / 192.168.232.24 / 30 /';
	MSGTYPE='collects';
	collects=[
	{
		ENTITYNAME='some-device.1[ 0 [ 33 ] ]';
		SEQUENCE=0;
	},
	{
		ENTITYNAME='some-device.2[ 0 [ 25 ] ]';
		SEQUENCE=0;
	}
	];
}