Share via


3.1.4.2.2.1.3.73.1 Columns

The DISCOVER_OBJECT_COUNTERS rowset contains the following columns.

Name

Type

Restriction

Description

OBJECT_NAME

xsd:string

The name of the object class to which the specified instances belong.

MODULE_NAME

xsd:string

The name of the module to which the specified instances belong.<380>

INSTANCES

xsd:long

The total number of instances of the specified object.

INSTANCE_SIZEOF

xsd:long

The size, in bytes, of the object in memory, excluding its dynamic suballocations.

The rowset is sorted on OBJECT_NAME.

The response has the following definition.

 <xsd:element name="root">
   <xsd:complexType>
     <xsd:sequence minOccurs="0" maxOccurs="unbounded">
       <xsd:element name="row" type="row" />
     </xsd:sequence>
   </xsd:complexType>
 </xsd:element>
 <xsd:simpleType name="uuid">
   <xsd:restriction base="xsd:string">
     <xsd:pattern value="[0-9a-zA-Z]{8}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{4}-[0-9a-zA-Z]{12}" />
   </xsd:restriction>
 </xsd:simpleType>
 <xsd:complexType name="xmlDocument">
   <xsd:sequence>
     <xsd:any />
   </xsd:sequence>
 </xsd:complexType>
 <xsd:complexType name="row">
   <xsd:sequence>
     <xsd:element sql:field="OBJECT_NAME" name="OBJECT_NAME" type="xsd:string" 
                  minOccurs="0" />
     <xsd:element sql:field="MODULE_NAME" name="MODULE_NAME" type="xsd:string" 
                  minOccurs="0" />
     <xsd:element sql:field="INSTANCES" name="INSTANCES" type="xsd:long" minOccurs="0" />
     <xsd:element sql:field="INSTANCE_SIZEOF" name="INSTANCE_SIZEOF" type="xsd:long" 
                  minOccurs="0" />
   </xsd:sequence>
 </xsd:complexType>