Skip to main content

vw_projects

Creates, updates, deletes, gets or lists a vw_projects resource.

Overview

Namevw_projects
TypeView
Idazure.data_migration.vw_projects

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
id as id,
name as name,
location as location,
systemData as system_data,
etag as etag,
tags as tags,
type as type,
JSON_EXTRACT(properties, '$.sourcePlatform') as "source_platform",
JSON_EXTRACT(properties, '$.azureAuthenticationInfo') as "azure_authentication_info",
JSON_EXTRACT(properties, '$.targetPlatform') as "target_platform",
JSON_EXTRACT(properties, '$.creationTime') as "creation_time",
JSON_EXTRACT(properties, '$.sourceConnectionInfo') as "source_connection_info",
JSON_EXTRACT(properties, '$.targetConnectionInfo') as "target_connection_info",
JSON_EXTRACT(properties, '$.databasesInfo') as "databases_info",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
groupName,
serviceName,
projectName
FROM azure.data_migration.projects
WHERE subscriptionId = 'replace-me' AND groupName = 'replace-me' AND serviceName = 'replace-me';