Skip to content

Commit ac808ad

Browse files
Merge pull request #239348 from fbsolo-ms1/new-updates-for-AMAR
Requested file and content changes.
2 parents 596efd8 + 98d5978 commit ac808ad

File tree

5 files changed

+347
-6
lines changed

5 files changed

+347
-6
lines changed

articles/machine-learning/how-to-connection.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: how-to
99
ms.author: ambadal
1010
author: AmarBadal
1111
ms.reviewer: franksolomon
12-
ms.date: 04/18/2023
12+
ms.date: 05/25/2023
1313
ms.custom: data4ml
1414

1515
# Customer intent: As an experienced data scientist with Python skills, I have data located in external sources outside of Azure. I need to make that data available to the Azure Machine Learning platform, to train my machine learning models.
@@ -143,13 +143,13 @@ This YAML script creates an Azure SQL DB connection. Be sure to update the appro
143143
# my_sqldb_connection.yaml
144144
$schema: http://azureml/sdk-2-0/Connection.json
145145

146-
type: azure_sql_db
146+
type: azuresqldb
147147
name: my_sqldb_connection
148148

149149
target: Server=tcp:<myservername>,<port>;Database=<mydatabase>;Trusted_Connection=False;Encrypt=True;Connection Timeout=30
150150
# add the sql servername, port addresss and database
151151
credentials:
152-
type: username_password
152+
type: sql_auth
153153
username: <username> # add the sql database user name here or leave this blank and type in CLI command line
154154
password: <password> # add the sql database password here or leave this blank and type in CLI command line
155155
```
@@ -271,3 +271,4 @@ ml_client.connections.create_or_update(workspace_connection=wps_connection)
271271
## Next steps
272272

273273
- [Import data assets](how-to-import-data-assets.md)
274+
- [Import data assets on a schedule](reference-yaml-schedule-data-import.md)

articles/machine-learning/how-to-import-data-assets.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: how-to
99
ms.author: ambadal
1010
author: AmarBadal
1111
ms.reviewer: franksolomon
12-
ms.date: 05/17/2023
12+
ms.date: 05/25/2023
1313
ms.custom: data4ml
1414
---
1515

@@ -217,6 +217,7 @@ ml_client.data.show_materialization_status(name="<name>")
217217

218218
## Next steps
219219

220+
- [Import data assets on a schedule](reference-yaml-schedule-data-import.md)
220221
- [Read data in a job](how-to-read-write-data-v2.md#read-data-in-a-job)
221222
- [Working with tables in Azure Machine Learning](how-to-mltable.md)
222223
- [Access data from Azure cloud storage during interactive development](how-to-access-data-interactive.md)

0 commit comments

Comments
 (0)