Hi Yashaswini,
The following query can help you to get the number of sessions being run on any particular date and for any particular process:
SELECT B.[name] AS process_name, COUNT(A.[processid]) AS session_count
FROM [Blue Prism].[dbo].[BPASession] A INNER JOIN [Blue Prism].[dbo].[BPAProcess] B
ON A.processid = B.processid
WHERE CAST(A.[startdatetime] AS DATE) = '<DATE_VALUE>'
AND B.name = '<PROCESS_NAME>'
GROUP BY B.[name]
Substitute the highlighted text as per your requirement. Below is a sample query being run:
------------------------------
----------------------------------
Hope it helps you and if it resolves your query please mark it as the best answer so that others having the same problem can track the answer easily
Regards,
Devneet Mohanty
Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,
Wonderbotz India Pvt. Ltd.
Blue Prism Community MVP | Blue Prism 7x Certified Professional
Website:
https://devneet.github.io/Email: devneetmohanty07@gmail.com
----------------------------------
------------------------------
---------------------------------------------------------------------------------------------------------------------------------------
Hope this helps you out and if so, please mark the current thread as the 'Answer', so others can refer to the same for reference in future.
Regards,
Devneet Mohanty,
SS&C Blueprism Community MVP 2024,
Automation Architect,
Wonderbotz India Pvt. Ltd.