Go to documentation repository
Previous page Next page
You can manually clear events from the PROTOCOL table using SQL queries in the following way:
Attention!
Once you remove events, it cannot be undone. We recommend creating the backup copy before removal (see Create a backup copy of databases).
In SQL Server Management Studio, run the query to remove selected events:
delete FROM [Axxon PSIM].[dbo].[PROTOCOL] where action = 'action' where [Axxon PSIM].[dbo].[PROTOCOL] — is the name of the table with events; action — is the name of the event to be deleted in the database.
As a result, selected events are removed from the PROTOCOL table using the SQL query.
For example, if you want to remove all Alarm events of the Camera object, then do the following:
In SQL Server Management Studio, run the query:
delete FROM [Axxon PSIM].[dbo].[PROTOCOL] where action = 'MD_START'
As a result, the Alarm camera events are removed from the events table.