When you use Matomo (Piwik) and view the information displayed in any report, there are options you can use to configure how the data is displayed. For example you may change: the number of rows displayed in the report, the column being sorted, the visualisation being used (table, graph, treemap, etc.), etc. When a user changes one of these settings in any report, these settings are saved by Matomo so that the next time the user views this report, the report will be displayed as it was last configured by the user.

In some rare cases, you may want to reset these stored settings so that all of Matomo reports will be displayed with the default settings. For example, this is useful when the Visitor Log or Segmented Visitor Log fails to load for a user, often because the user had selected ‘all’ in the bottom-right dropdown, which may create performance issues on high traffic websites when Matomo tries to load thousands of visits in the log.

To reset the report settings for all users at once, run the following SQL query:

DELETE FROM matomo_option WHERE option_name LIKE "viewDataTableParameters_%";

To reset the report settings for a particular user my-username run the following SQL query:

DELETE FROM matomo_option WHERE option_name LIKE "viewDataTableParameters_my-username%";
Previous FAQ: What do I do when the browser tab becomes unresponsive when using Matomo?