Go to documentation repository
Documentation for Intellect 4.11.0-4.11.3. Documentation for other versions of Intellect is available too.
You can manually remove the events from the PROTOCOL table using SQL queries as follows:
Attention!
Once you remove the events, it cannot be undone. We recommend you to create a backup before removal (see Creating the database backup copy).
- Shut down Intellect.
- Determine the events which should be removed from the events database.
- Open the intellect.ddi file using the ddi.exe utility (see The ddi.exe utility for editing database templates and external settings files):
- select the object the events from which you want to delete;
- go to the Events tab to view the names of the events to be deleted in the database.
In SQL Server Management Studio, run a query to remove the selected events:
delete FROM [intellect].[dbo].[PROTOCOL] where action = 'action' where [intellect].[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 removed from the PROTOCOL table using an SQL query.
For example, if it is necessary to remove all the Alarm events of the Camera object, then do the following:
- In the intellect.ddi file, select the Cam object (1).
- Go to the Events tab (2).
- Find the name of the Alarm event to be deleted in the database: MD_START (3).
In SQL Server Management Studio, run the query:
delete FROM [intellect].[dbo].[PROTOCOL] where action = 'MD_START'
As a result, the Alarm events from cameras will be removed from the events table.
Overview
Content Tools