Go to documentation repository
You can manually remove the clear events from the PROTOCOL table using SQL queries as followsin the following way:
| Note | ||
|---|---|---|
| ||
Once you remove the events, it cannot be undone. We recommend you to create a backup creating the backup copy before removal (see Creating the database backup copy). |
In SQL Server Management Studio, run a the query to remove the selected events:
| Code Block |
|---|
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, the selected events will be are removed from the PROTOCOL table using an the SQL query.
For example, if it is necessary you want to remove all the all Alarm events of the Camera object, then do the following:
In SQL Server Management Studio, run the query:
| Code Block |
|---|
delete FROM [Axxon PSIM].[dbo].[PROTOCOL] where action = 'MD_START' |
As a result, the the Alarm camera events from cameras will be are removed from the events table.
...