Using the FOR TABLE ONLY Keywords
Use the FOR TABLE ONLY keywords to collect data for a single table within a hierarchy of typed tables. If you do not include the ONLY keyword immediately after FOR TABLE when the specified table has subtables, HCL OneDB™ creates distributions for that table and also for every subtable under it in the hierarchy.
UPDATE STATISTICS FOR TABLE sales_rep;
UPDATE STATISTICS FOR TABLE ONLY (sales_rep);
If you specify FOR TABLE ONLY, as in this example, the identifier of the table (or owner.table) must be enclosed between parentheses.
Because neither of the previous examples specified the level at which to update the statistical data, the database server uses the LOW mode by default.