How to determine how many incidents are waiting to be deleted
search cancel

How to determine how many incidents are waiting to be deleted

book

Article ID: 159879

calendar_today

Updated On:

Products

Data Loss Prevention Enforce Data Loss Prevention

Issue/Introduction

I know incidents aren't actually deleted when I deleted them, they are just marked for deletion.

How can I determine how many incidents are "deleted"?

Resolution

The incidents that are "deleted" and will be purged can be counted with the following query run as the protect user.

 

 

 

Login to sqlplus;

sqlplus /nolog

conn protect/password@protect

Select count (*) from Incident where IsDeleted = 1;