vw_transformations
Creates, updates, deletes, gets or lists a vw_transformations
resource.
Overview
Name | vw_transformations |
Type | View |
Id | azure.stream_analytics.vw_transformations |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.streamingUnits') as "streaming_units",
JSON_EXTRACT(properties, '$.validStreamingUnits') as "valid_streaming_units",
JSON_EXTRACT(properties, '$.query') as "query",
JSON_EXTRACT(properties, '$.etag') as "etag",
subscriptionId,
resourceGroupName,
jobName,
transformationName
FROM azure.stream_analytics.transformations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND jobName = 'replace-me' AND transformationName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.streamingUnits') as "streaming_units",
json_extract_path_text(properties, '$.validStreamingUnits') as "valid_streaming_units",
json_extract_path_text(properties, '$.query') as "query",
json_extract_path_text(properties, '$.etag') as "etag",
subscriptionId,
resourceGroupName,
jobName,
transformationName
FROM azure.stream_analytics.transformations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND jobName = 'replace-me' AND transformationName = 'replace-me';