Is there a way to determine who deleted a test set?
Question ID: 106741
0
0

Is there a way to determine who deleted a test set? I have a test lab folder that was deleted and looking to figure out who did it, is there a table that stores that information?

Marked as spam
Posted by (Questions: 204, Answers: 2)
Asked on April 6, 2016 4:39 pm
26 views
Answers (2)
0
Private answer

Here is the correct query for your question:

SELECT * FROM AUDIT_LOG where au_action = 'DELETE' and au_entity_type = 'RUN'
order by au_time desc

Marked as spam
Posted by (Questions: 1, Answers: 216)
Answered on April 6, 2016 4:43 pm
0
Private answer

Here is the query to answer your question:

SELECT * FROM AUDIT_LOG where au_entity_type = 'TEST' or au_entity_type = 'DESSTEPS'

The list of items returned will include all tests, the date, and the user

Marked as spam
Posted by (Questions: 1, Answers: 216)
Answered on August 30, 2016 4:39 pm
EyeOnTesting

Welcome back to "EyeOnTesting" brought to you by Orasi Software, Inc.

X
Scroll to Top