Skip to content

Commit f350a5f

Browse files
Merge pull request #112874 from stevestein/sql-edge-rename-4.27
sql edge rename
2 parents c9a9d3c + 1858452 commit f350a5f

23 files changed

+246
-211
lines changed

.openpublishing.redirection.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51959,6 +51959,41 @@
5195951959
"source_path": "articles/sql-database/sql-database-auditing-and-threat-detection-powershell.md",
5196051960
"redirect_url": "/azure/sql-database/scripts/sql-database-auditing-and-threat-detection-powershell",
5196151961
"redirect_document_id": true
51962+
},
51963+
{
51964+
"source_path": "articles/sql-database-edge/index.yml",
51965+
"redirect_url": "/azure/azure-sql-edge/",
51966+
"redirect_document_id": true
51967+
},
51968+
{
51969+
"source_path": "articles/sql-database-edge/deploy-onnx.md",
51970+
"redirect_url": "/azure/azure-sql-edge/deploy-onnx",
51971+
"redirect_document_id": true
51972+
},
51973+
{
51974+
"source_path": "articles/sql-database-edge/deploy-portal.md",
51975+
"redirect_url": "/azure/azure-sql-edge/deploy-portal",
51976+
"redirect_document_id": true
51977+
},
51978+
{
51979+
"source_path": "articles/sql-database-edge/onnx-overview.md",
51980+
"redirect_url": "/azure/azure-sql-edge/onnx-overview",
51981+
"redirect_document_id": true
51982+
},
51983+
{
51984+
"source_path": "articles/sql-database-edge/overview.md",
51985+
"redirect_url": "/azure/azure-sql-edge/overview",
51986+
"redirect_document_id": true
51987+
},
51988+
{
51989+
"source_path": "articles/sql-database-edge/stream-analytics.md",
51990+
"redirect_url": "/azure/azure-sql-edge/stream-analytics",
51991+
"redirect_document_id": true
51992+
},
51993+
{
51994+
"source_path": "articles/sql-database-edge/tutorial-sync-data-factory.md",
51995+
"redirect_url": "/azure/azure-sql-edge/tutorial-sync-data-factory",
51996+
"redirect_document_id": true
5196251997
}
5196351998
]
5196451999
}

articles/sql-database-edge/deploy-onnx.md renamed to articles/azure-sql-edge/deploy-onnx.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Deploy and make predictions with ONNX in SQL Database Edge Preview
3-
description: Learn how to train a model, convert it to ONNX, deploy it to Azure SQL Database Edge Preview, and then run native PREDICT on data using the uploaded ONNX model.
4-
keywords: deploy sql database edge
2+
title: Deploy and make predictions with ONNX in SQL Edge Preview
3+
description: Learn how to train a model, convert it to ONNX, deploy it to Azure SQL Edge Preview, and then run native PREDICT on data using the uploaded ONNX model.
4+
keywords: deploy SQL Edge
55
services: sql-database-edge
66
ms.service: sql-database-edge
77
ms.subservice: machine-learning
@@ -11,15 +11,15 @@ ms.author: davidph
1111
ms.date: 04/23/2020
1212
---
1313

14-
# Deploy and make predictions with an ONNX model in SQL Database Edge Preview
14+
# Deploy and make predictions with an ONNX model in SQL Edge Preview
1515

16-
In this quickstart, you'll learn how to train a model, convert it to ONNX, deploy it to Azure SQL Database Edge Preview, and then run native PREDICT on data using the uploaded ONNX model. For more information, see [Machine learning and AI with ONNX in SQL Database Edge Preview](onnx-overview.md).
16+
In this quickstart, you'll learn how to train a model, convert it to ONNX, deploy it to Azure SQL Edge Preview, and then run native PREDICT on data using the uploaded ONNX model. For more information, see [Machine learning and AI with ONNX in SQL Edge Preview](onnx-overview.md).
1717

1818
This quickstart is based on **scikit-learn** and uses the [Boston Housing dataset](https://scikit-learn.org/stable/modules/generated/sklearn.datasets.load_boston.html).
1919

2020
## Before you begin
2121

22-
* If you haven't deployed an Azure SQL Database Edge module, follow the steps of [deploy SQL Database Edge Preview using the Azure portal](deploy-portal.md).
22+
* If you haven't deployed an Azure SQL Edge module, follow the steps of [deploy SQL Edge Preview using the Azure portal](deploy-portal.md).
2323

2424
* Install [Azure Data Studio](https://docs.microsoft.com/sql/azure-data-studio/download).
2525

@@ -214,7 +214,7 @@ MSE are equal
214214

215215
## Insert the ONNX model
216216

217-
Store the model in Azure SQL Database Edge, in a `models` table in a database `onnx`. In the connection string, specify the **server address**, **username**, and **password**.
217+
Store the model in Azure SQL Edge, in a `models` table in a database `onnx`. In the connection string, specify the **server address**, **username**, and **password**.
218218

219219
```python
220220
import pyodbc
@@ -272,7 +272,7 @@ conn.commit()
272272

273273
## Load the data
274274

275-
Load the data into Azure SQL Database Edge.
275+
Load the data into Azure SQL Edge.
276276

277277
First, create two tables, **features** and **target**, to store subsets of the Boston housing dataset.
278278

@@ -345,7 +345,7 @@ Now you can view the data in the database.
345345

346346
## Run PREDICT using the ONNX model
347347

348-
With the model in Azure SQL Database Edge, run native PREDICT on the data using the uploaded ONNX model.
348+
With the model in Azure SQL Edge, run native PREDICT on the data using the uploaded ONNX model.
349349

350350
> [!NOTE]
351351
> Change the notebook kernel to SQL to run the remaining cell.
@@ -384,4 +384,4 @@ FROM PREDICT(MODEL = @model, DATA = predict_input) WITH (variable1 FLOAT) AS p
384384

385385
## Next Steps
386386

387-
* [Machine Learning and AI with ONNX in SQL Database Edge](onnx-overview.md)
387+
* [Machine Learning and AI with ONNX in SQL Edge](onnx-overview.md)

articles/sql-database-edge/deploy-portal.md renamed to articles/azure-sql-edge/deploy-portal.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Deploy SQL Database Edge Preview using the Azure portal | Microsoft Docs
3-
description: Learn how to deploy Azure SQL Database Edge using the Azure portal
4-
keywords: deploy sql database edge
2+
title: Deploy SQL Edge Preview using the Azure portal | Microsoft Docs
3+
description: Learn how to deploy Azure SQL Edge using the Azure portal
4+
keywords: deploy SQL Edge
55
services: sql-database-edge
66
ms.service: sql-database-edge
77
ms.topic: conceptual
@@ -11,29 +11,29 @@ ms.reviewer: sstein
1111
ms.date: 11/04/2019
1212
---
1313

14-
# Deploy Azure SQL Database Edge Preview
14+
# Deploy Azure SQL Edge Preview
1515

16-
Azure SQL Database Edge Preview is a relational database engine optimized for IoT and Azure IoT Edge deployments. It provides capabilities to create a high-performance data storage and processing layer for IoT applications and solutions. This quickstart shows you how to get started with creating an Azure SQL Database Edge module through Azure IoT Edge using the Azure portal.
16+
Azure SQL Edge Preview is a relational database engine optimized for IoT and Azure IoT Edge deployments. It provides capabilities to create a high-performance data storage and processing layer for IoT applications and solutions. This quickstart shows you how to get started with creating an Azure SQL Edge module through Azure IoT Edge using the Azure portal.
1717

1818
## Before you begin
1919

2020
* If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/).
2121
* Sign in to the [Azure portal](https://portal.azure.com/).
22-
* Submit a request [here](https://azure.microsoft.com/services/sql-database-edge/#contact), to have the subscription enabled for deployment of SQL Database Edge.
22+
* Submit a request [here](https://azure.microsoft.com/services/sql-database-edge/#contact), to have the subscription enabled for deployment of SQL Edge.
2323
* Create an [Azure IoT Hub](../iot-hub/iot-hub-create-through-portal.md).
2424
* Register an [IoT Edge Device from the Azure portal](../iot-edge/how-to-register-device-portal.md).
2525
* Prepare the IoT Edge device to [deploy IoT Edge module from the Azure portal](../iot-edge/how-to-deploy-modules-portal.md).
2626

2727
> [!NOTE]
2828
> To deploy an Azure Linux VM as an IoT Edge device, see this [quickstart guide](../iot-edge/quickstart-linux.md).
2929
30-
## Deploy SQL Database Edge Module from Azure Marketplace
30+
## Deploy SQL Edge Module from Azure Marketplace
3131

32-
Azure Marketplace is an online applications and services marketplace where you can browse through a wide range of enterprise applications and solutions that are certified and optimized to run on Azure, including [IoT Edge modules](https://azuremarketplace.microsoft.com/marketplace/apps/category/internet-of-things?page=1&subcategories=iot-edge-modules). Azure SQL Database Edge can be deployed to an edge device through the marketplace.
32+
Azure Marketplace is an online applications and services marketplace where you can browse through a wide range of enterprise applications and solutions that are certified and optimized to run on Azure, including [IoT Edge modules](https://azuremarketplace.microsoft.com/marketplace/apps/category/internet-of-things?page=1&subcategories=iot-edge-modules). Azure SQL Edge can be deployed to an edge device through the marketplace.
3333

34-
1. Find the Azure SQL Database Edge module on the Azure Marketplace.<br><br>
34+
1. Find the Azure SQL Edge module on the Azure Marketplace.<br><br>
3535

36-
![SQL Database Edge in MarketPlace](media/deploy-portal/find-offer-marketplace.png)
36+
![SQL Edge in MarketPlace](media/deploy-portal/find-offer-marketplace.png)
3737

3838
2. Pick the software plan that best matches your requirements and click **Create**. <br><br>
3939

@@ -45,16 +45,16 @@ Azure Marketplace is an online applications and services marketplace where you c
4545
|---------|---------|
4646
|Subscription | The Azure subscription under which the IoT Hub was created |
4747
|IoT Hub | Name of the IoT Hub where the IoT Edge device is registered and then select "Deploy to a device" option|
48-
|IoT Edge Device Name | Name of the IoT Edge device where SQL Database Edge would be deployed |
48+
|IoT Edge Device Name | Name of the IoT Edge device where SQL Edge would be deployed |
4949

50-
4. On the **Set Modules** page, navigate to the section on deployment modules and click **Configure** against the SQL Database Edge module.
50+
4. On the **Set Modules** page, navigate to the section on deployment modules and click **Configure** against the SQL Edge module.
5151

5252
5. On the **IoT Edge Custom Modules** pane, specify the desired values for the environment variables and/or customize the create options and desired properties for the module. For a complete list of supported environment variables refer [SQL Server Container Environment Variables](/sql/linux/sql-server-linux-configure-environment-variables/).
5353

5454
|**Parameter** |**Description**|
5555
|---------|---------|
5656
| Name | Name for the module. |
57-
|SA_PASSWORD | Specify a strong password for the SQL Database Edge admin account. |
57+
|SA_PASSWORD | Specify a strong password for the SQL Edge admin account. |
5858
|MSSQL_LCID | Sets the language ID to use for SQL Server. For example, 1036 is French. |
5959
|MSSQL_COLLATION | Sets the default collation for SQL Server. This setting overrides the default mapping of language ID (LCID) to collation. |
6060

@@ -91,7 +91,7 @@ Azure Marketplace is an online applications and services marketplace where you c
9191
}
9292
```
9393

94-
7. On the **IoT Edge Custom Modules** pane, update the *Set module twin's desired properties* to include the location of the SQL package and the stream analytics job info. These two fields are optional and should be used if you want to deploy the SQL Database Edge module with a database and a streaming job.
94+
7. On the **IoT Edge Custom Modules** pane, update the *Set module twin's desired properties* to include the location of the SQL package and the stream analytics job info. These two fields are optional and should be used if you want to deploy the SQL Edge module with a database and a streaming job.
9595

9696
```json
9797
{
@@ -110,9 +110,9 @@ Azure Marketplace is an online applications and services marketplace where you c
110110
12. Click **Next**.
111111
13. Click **Submit**.
112112

113-
In this quickstart, you deployed a SQL Database Edge Module on an IoT Edge device.
113+
In this quickstart, you deployed a SQL Edge Module on an IoT Edge device.
114114

115115
## Next Steps
116116

117-
- [Machine Learning and Artificial Intelligence with ONNX in SQL Database Edge](onnx-overview.md).
118-
- Building an end to end IoT Solution with SQL Database Edge using IoT Edge.
117+
- [Machine Learning and Artificial Intelligence with ONNX in SQL Edge](onnx-overview.md).
118+
- Building an end to end IoT Solution with SQL Edge using IoT Edge.

articles/sql-database-edge/index.yml renamed to articles/azure-sql-edge/index.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
### YamlMime:Landing
22

3-
title: Azure SQL Database Edge documentation
4-
summary: Azure SQL Database Edge is an optimized relational database engine geared for IoT and edge deployments.
3+
title: Azure SQL Edge documentation
4+
summary: Azure SQL Edge is an optimized relational database engine geared for IoT and edge deployments.
55

66
metadata:
7-
title: Azure SQL Database Edge documentation
8-
meta.description: Learn how to use Azure SQL Database Edge.
7+
title: Azure SQL Edge documentation
8+
meta.description: Learn how to use Azure SQL Edge.
99
services: sql-database-edge
1010
ms.service: sql-database-edge
1111
ms.topic: landing-page
@@ -20,29 +20,29 @@ landingContent:
2020
# Start card title with a verb
2121

2222
# Card
23-
- title: SQL Database Edge
23+
- title: SQL Edge
2424
linkLists:
2525
- linkListType: overview
2626
links:
27-
- text: What is SQL Database Edge?
27+
- text: What is SQL Edge?
2828
url: overview.md
2929

3030
# Card
31-
- title: Deploy SQL Database Edge
31+
- title: Deploy SQL Edge
3232
linkLists:
3333
- linkListType: quickstart
3434
links:
35-
- text: Deploy SQL Database Edge
35+
- text: Deploy SQL Edge
3636
url: deploy-portal.md
3737

3838
# Card
3939
- title: Sync data
4040
linkLists:
4141
- linkListType: tutorial
4242
links:
43-
- text: Sync SQL Database Edge data with Azure Data Factory
43+
- text: Sync SQL Edge data with Azure Data Factory
4444
url: tutorial-sync-data-factory.md
45-
- text: Sync SQL Database Edge data with SQL Database
45+
- text: Sync SQL Edge data with SQL Database
4646
url: tutorial-sync-data-sync.md
4747

4848

@@ -55,7 +55,7 @@ landingContent:
5555
url: onnx-overview.md
5656
- linkListType: quickstart
5757
links:
58-
- text: Deploy ONNX on SQL Database Edge
58+
- text: Deploy ONNX on SQL Edge
5959
url: deploy-onnx.md
6060

6161

0 commit comments

Comments
 (0)