Example: Fine-Tuning Query Logging Rules - Teradata Vantage

Teradata® VantageCloud Lake

Deployment
VantageCloud
Edition
Lake
Product
Teradata Vantage
Published
January 2023
Language
English (United States)
Last Update
2024-04-03
dita:mapPath
phg1621910019905.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
phg1621910019905

Create a logging rule for myuser2 and include the WITH NONE option:

     BEGIN QUERY LOGGING WITH SQL ON ALL;
     BEGIN QUERY LOGGING WITH NONE ON myuser2 ACCOUNT='sales';

Create a logging rule for myuser2 to capture step data in DBQLStepTbl. Submit an END QUERY LOGGING request to remove the existing rule before adding the new rule:

     END QUERY LOGGING ON myuser2 ACCOUNT='sales';

This request creates the new rule:

     BEGIN QUERY LOGGING WITH STEPINFO ON myuser2 ACCOUNT='sales';

As an alternative, use a REPLACE QUERY LOGGING request instead of the END QUERY LOGGING and BEGIN QUERY LOGGING requests. See REPLACE QUERY LOGGING.