Example: Logging an XML Plan with VERBOSE EXPLAIN and DETAILED STATSUSAGE Collections in the Same Request - Advanced SQL Engine - Teradata Database

SQL Data Definition Language Syntax and Examples

Product
Advanced SQL Engine
Teradata Database
Release Number
17.00
Published
September 2020
Language
English (United States)
Last Update
2021-01-23
dita:mapPath
wgr1555383704548.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1144
lifecycle
previous
Product Category
Teradata Vantage™

This example uses the same table and COLLECT STATISTICS request as Example: Logging an XML Plan with VERBOSE EXPLAIN and DETAILED STATSUSAGE Collections.

Log Object, SQL, Step Details, Verbose Explain, Statistics Details, and Statistics Usage information on user_1:

     BEGIN QUERY LOGGING WITH VERBOSE XMLPLAN, 
                              DETAILED STATSUSAGE ON user_1;

Update the employee table, setting the salary for employee John to $40,000:

     UPDATE employee 
     SET SALARY=40000 
     WHERE emp_name='John';

This request reports Verbose XMLPLAN, Statistics Details, and Statistics Usage rules as TRUE:

     SHOW QUERY LOGGING ON user_1;

Terminate logging on user_1:

     END QUERY LOGGING ON user_1;