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

SQL Data Definition Language Syntax and Examples

Deployment
VantageCloud
VantageCore
Edition
VMware
Enterprise
IntelliFlex
Product
Analytics Database
Teradata Vantage
Release Number
17.20
Published
June 2022
ft:locale
en-US
ft:lastEdition
2025-11-22
dita:mapPath
jco1628111346878.ditamap
dita:ditavalPath
qkf1628213546010.ditaval
dita:id
mdr1472255012272
lifecycle
latest
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;