getting job_parameters object with sql
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2024 11:05 AM
Hey,
In order to create more meaningful monitoring or usage or few platformic jobs I am using I need to be able to access the job_parameters object of jon runs.
While job_parameters exists in system.workflow.job_run_timeline table, it is not populated for most job runs, even if they have parameters.
The data is saved somewhere as it does exist in the UI.
Can you please advise how to get the full object, preferably is sql, so I could complete my dashboards?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2024 12:37 AM
@yairofek wrote:Hey,
In order to create more meaningful monitoring or usage or few platformic jobs I am using I need to be able to access the job_parameters object of jon runs.
While job_parameters exists in system.workflow.job_run_timeline table, it is not populated for most job runs, even if they have parameters.
The data is saved somewhere as it does exist in the UI.
Can you please advise how to get the full object, preferably is sql, so I could complete my dashboards?
Hello!
To access the full job_parameters object for job runs in the system.workflow.job_run_timeline table, you can use SQL queries to join this table with other relevant tables that might contain the missing data. Identify related tables that store job parameters or related information, then use SQL JOIN operations to combine data from these tables and extract the necessary fields to reconstruct the full job_parameters object. For example, you can join the job_run_timeline table with the job_parameters table on the job_run_id field and filter for a specific job ID. This approach helps in completing your dashboards with the required information.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2024 09:16 PM
@michelle653burk wrote:
@yairofek wrote:Hey,
In order to create more meaningful monitoring or usage or few platformic jobs I am using I need to be able to access the job_parameters object of jon runs.
While job_parameters exists in system.workflow.job_run_timeline table, it is not populated for most job runs, even if they have parameters.
The data is saved somewhere mygreatlakes as it does exist in the UI.
Can you please advise how to get the full object, preferably is sql, so I could complete my dashboards?Hello!
To access the full job_parameters object for job runs in the system.workflow.job_run_timeline table, you can use SQL queries to join this table with other relevant tables that might contain the missing data. Identify related tables that store job parameters or related information, then use SQL JOIN operations to combine data from these tables and extract the necessary fields to reconstruct the full job_parameters object. For example, you can join the job_run_timeline table with the job_parameters table on the job_run_id field and filter for a specific job ID. This approach helps in completing your dashboards with the required information.
Was that helpful to you?

