Query to find deleted survey (MSSQL & PGSQL)

Query to find deleted survey (MSSQL & PGSQL)

Tested in builds from PGSQL (14300) or MSSQL (14306)
Go to Reports >> New Query Report >> Run the below query to get the data

SELECT err.message "System log message",
       err.errormodule "Module",
       err.suberrormodule "Sub Module",
       err.action "Action",
       err.type "Type",
       au.first_name "Performed by",
       longtodate(err.occurredtime) "Time of occurrence" FROM errorlog err
LEFT JOIN aaauser au ON err.ownerid=au.user_id
WHERE err.action LIKE '%Delete%'
 AND err.suberrormodule LIKE '%Survey%'
 AND au.first_name IS NOT NULL

que


                  New to ADManager Plus?

                    New to ADSelfService Plus?