Get orchestrator job table name in database

i want the query that return all jobs info especially the failed with exception info from my db.

1 Like

Hi @Yazan_Otaibi

To retrieve all job information, including failed jobs with exception details, from your database in UiPath, you would typically need to use SQL queries. Please give the following query a try:

SELECT *
FROM Jobs
WHERE Status = 'Failed'

Hope this helps,
Best Regards.

2 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.