vw_job_agents
Creates, updates, deletes, gets or lists a vw_job_agents
resource.
Overview
Name | vw_job_agents |
Type | View |
Id | azure.sql.vw_job_agents |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
sku as sku,
JSON_EXTRACT(properties, '$.databaseId') as "database_id",
JSON_EXTRACT(properties, '$.state') as "state",
subscriptionId,
resourceGroupName,
serverName,
jobAgentName
FROM azure.sql.job_agents
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serverName = 'replace-me';
SELECT
location as location,
tags as tags,
sku as sku,
json_extract_path_text(properties, '$.databaseId') as "database_id",
json_extract_path_text(properties, '$.state') as "state",
subscriptionId,
resourceGroupName,
serverName,
jobAgentName
FROM azure.sql.job_agents
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serverName = 'replace-me';