Create new Query for that database (for example Webcheckin database). Then run this script:
USE (your database name)
GO
SELECT DISTINCT ActionName
FROM dbo.tbNLog;
This will help you filter better
Modified on: Wed, 7 Aug, 2024 at 3:50 PM
Create new Query for that database (for example Webcheckin database). Then run this script:
USE (your database name)
GO
SELECT DISTINCT ActionName
FROM dbo.tbNLog;
This will help you filter better
Did you find it helpful? Yes No
Send feedback