ps_truncate_all_tables
Syntax
ps_truncate_all_tables(bool display)
Description
ps_truncate_all_tables
is a stored procedure available with the Sys Schema.
The procedure resets all aggregated instrumentation as a snapshot, producing a result set indicating the number of truncated tables. The boolean parameter display specifies whether to display each TRUNCATE TABLE statement before execution.
Examples
CALL sys.ps_truncate_all_tables(false); +---------------------+ | summary | +---------------------+ | Truncated 44 tables | +---------------------+
CALL sys.ps_truncate_all_tables(true); +------------------------------------------------------------------+ | status | +------------------------------------------------------------------+ | Running: TRUNCATE TABLE performance_schema.events_stages_history | +------------------------------------------------------------------+ ... +------------------------------------------------------------------------------+ | status | +------------------------------------------------------------------------------+ | Running: TRUNCATE TABLE performance_schema.table_lock_waits_summary_by_table | +------------------------------------------------------------------------------+ +---------------------+ | summary | +---------------------+ | Truncated 44 tables | +---------------------+
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.