Self-Learning (SL) is a mechanism which is trying to find the most secure and reliable way to boot an OS. During the "learning" process a set of override settings can be created and stored in respective OVR files. Additionally the process creates an override configuration for the system it runs on and sends the "learned" configuration in a form of XML to SES. These learned configurations are stored in the dbo.SelfLearnedConfigs table in the database. If for some reason you need to remove an entry from this table, you can do so following the instructions below:
- In the SES database, right click the dbo.SelfLearnedConfigs table > “Select Top 1000 Rows”, or run the query below:
SELECT TOP (1000) [Index]
,[Data]
,[ZipData]
,[DateCreated]
,[DateModified]
FROM [SESDB].[dbo].[SelfLearnedConfigs]
- Locate the index (X) for the entry you want to delete.
- Run the query below to remove this record from the database. Replace X with the index of the record that you want to delete:
DELETE FROM dbo.SelfLearnedConfigs
WHERE Index = X;