Additional SQL Server features and topics not covered by specific categories
Hi @DataNerd,
All editions support database level audits beginning with SQL Server 2016 (13.x) SP1.
Please refer to this MS document: Features Supported by the Editions of SQL Server 2016
You can upgrade your SQL Server.
One approach is to use SQL Server's built-in system views and functions, such as sys.dm_exec_connections, sys.dm_exec_sessions, and sys.dm_exec_requests, to capture the information you need.
There is also a tool named Extended Events that you can use.
https://www.sqlshack.com/using-sql-server-extended-events-to-monitor-query-performance/
Best regards,
Seeya
If the answer is the right solution, please click "Accept Answer" and kindly upvote it.