com.esri.arcgis.geodatabase
Interface IDatasetAnalyze

All Superinterfaces:
Serializable
All Known Implementing Classes:
FeatureClass, FeatureDataset, IDatasetAnalyzeProxy, MosaicDataset, NetworkDataset, ObjectClass, RasterCatalog, RasterDataset, StreetNetwork, Table, Terrain, UtilityNetwork

public interface IDatasetAnalyze
extends Serializable

Provides access to members that analyze a dataset.

Remarks

IDatasetAnalyze is an optional interface that updates database table and index statistics for the dataset. The IDatasetAnalyze interface is available on datasets in an ArcSDE geodatabase. Datasets in Personal or File geodatabases do not support this interface.

When applied to a feature dataset, Analyze updates the statistics for all of the tables.

The AllowableComponents property indicates which parts of the table or feature class can be analyzed. The returned value is based on the esriTableComponents enumeration. Members from this enumeration can be bitwise or’d together.

DBMS statistics are important for efficient query performance—this is most relevant to ArcSDE geodatabases. You can determine whether your geodatabase supports DBMS statistics with IWorkspaceProperties.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Method Summary
 void analyze(int tableComponents)
          Analyze the data to update/generate DBMS statistics.
 int getAllowableComponents()
          The allowable components to be analyzed.
 

Method Detail

analyze

void analyze(int tableComponents)
             throws IOException,
                    AutomationException
Analyze the data to update/generate DBMS statistics.

Remarks

When applied to a feature dataset, Analyze updates the statistics for all of the tables.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Parameters:
tableComponents - The tableComponents (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getAllowableComponents

int getAllowableComponents()
                           throws IOException,
                                  AutomationException
The allowable components to be analyzed.

Remarks

The AllowableComponents property indicates which parts of the table or feature class can be analyzed. The returned value is based on the esriTableComponents enumeration. Members from this enumeration can be bitwise or’d together.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Returns:
The allowableComponents
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.