Table of Contents

MySQL Workbench

Note

From DataMiner 10.4.0 onwards, MySQL is no longer supported as the general database. We recommend switching to Storage as a Service.

MySQL Workbench is a tool for exploring MySQL databases and performing administrative actions.

MySQL Workbench
MySQL Workbench SQL Editor

Tip

Logging queries

To log all queries, perform the following action:

SET global general_log = 1;
SET global log_output = 'table'; // enable logging through table
select * from MySQL.general_log; // view the log

To disable the logging:

SET global general_log = 0;