Hello Baig Firoz,
correction: it's Community, not Team :smileyhappy:
As to the client's quarantine manager see [...]loss of detected items from quarantine manager list[...]
To deal with the events in SEC's database use something like this from a command window on the database server:
osql -E -S . -d SOPHOS4 -Q "DELETE FROM Threats WHERE FirstDetectedAt<'yyyy-mm-dd 00:00:00.00' and Outstanding=0 and ComputerID=(SELECT ID FROM ComputersAndDeletedComputers WHERE NAME='cccccccc')"
with the desired values for yyyy-mm-dd and cccccccc.
This will delete all threats entries before the specified date for the named computer that have been acknowledged - this information will no longer be available for reporting . If you omit the and Outstanding=0 it will delete the entries whether they've been dealt with in SEC or not. As the items will be move to the ThreatsArchive table after I think some 30 days you might also want to clean these (but of course the information will also no longer be available for reporting). So use at your own discretion!
There are (IMO - since I didn't test it) several ways to "replace" the database. Depends on your level of expertise, courage :smileywink: and whether downtime should be a minimum.
Christian
The command is missing an instance. It should have .\sophos rather than just a full stop so it would be:
osql -E -S .\sophos -d SOPHOS4 -Q "DELETE FROM Threats WHERE FirstDetectedAt<'yyyy-mm-dd 00:00:00.00' and Outstanding=0 and ComputerID=(SELECT ID FROM ComputersAndDeletedComputers WHERE NAME='cccccccc')"
Cheers
Paul