UpdateStatSampleSetting - Teradata Database - Teradata Vantage NewSQL Engine

Application Programming Reference

Product
Teradata Database
Teradata Vantage NewSQL Engine
Release Number
16.20
Published
March 2019
Language
English (United States)
Last Update
2019-05-02
dita:mapPath
vwf1492987142269.ditamap
dita:ditavalPath
changebar_rev_16_20_exclude_audience_ie.ditaval
dita:id
B035-1090
lifecycle
previous
Product Category
Teradata Vantage™

Records the user specified SAMPLE setting to include when preparing and executing the SQL COLLECT STATISTICS statements on the selected statistics or objects.

Definition

REPLACE PROCEDURE TDSTATS.UpdateStatSampleSetting
 (IN  SCOID        BIGINT,
  IN  DatabaseName VARCHAR(128) CHARACTER SET UNICODE,
  IN  TableName    VARCHAR(128) CHARACTER SET UNICODE,
  IN  SampleType   CHAR(1) CHARACTER SET LATIN,
  IN  Percentage   INTEGER,
  OUT NumUpdated   SINTEGER)
           .
           .
           .
;

Input Parameters

Parameter Description
SCOID TDSTATS ID of an individual statistic whose SAMPLE settings are to be changed. For more information, see the SampleType input parameter.
DatabaseName Name of the database. DatabaseName limits the new settings that will be applied to all statistics collected within the database you specify.
TableName Name of the table within the specified DatabaseName. TableName limits the new settings to statistics collected on the table you specify within DatabaseName.
SampleType Type of sample option change:
  • S means SYSTEM SAMPLE
  • U means SAMPLE <Percentage> PERCENT
  • N means no sampling

For more information about the COLLECT STATISTICS SAMPLE option, see Teradata Vantage™ SQL Data Definition Language Syntax and Examples, B035-1144.

Percentage User supplied percentage.

This value is valid when SampleType is U. For details, see the SampleType input parameter.

Usage Notes

The new collection settings will take effect during the next RunCollect involving the selected statistics. For more information about this external stored procedure, see RunCollect.

Output Parameter

Parameter Description
NumUpdated Number of statistics whose SAMPLE setting have been updated.

For more information about the COLLECT STATISTICS SAMPLE option, see Teradata Vantage™ SQL Data Definition Language Syntax and Examples, B035-1144.

Example: Using UpdateStatSampleSetting

The following example shows how to specify a SampleType option (for example, SAMPLE 25 PERCENT) when collecting statistics on the individual statistic whose TDSTATS database ID is 102 on the Personnel.Employee table.

CALL TDSTATS.UpdateStatSamplingSetting(102, 'Personnel', 'Employee', 'U', 25, NumUpdated);
*** Procedure has been executed.
*** Total elapsed time was 1 second.
 NumUpdated
-----------
          1

Related Topics

For more information about the COLLECT STATISTICS SAMPLE option, see Teradata Vantage™ SQL Data Definition Language Syntax and Examples, B035-1144.