Skip to content

Commit b135c11

Browse files
authored
Merge pull request #115630 from stevestein/sqledge-5-19.1
sqledge - update per PM feedback
2 parents dbf7518 + aade1ac commit b135c11

File tree

8 files changed

+9
-6
lines changed

8 files changed

+9
-6
lines changed

articles/azure-sql-edge/create-stream-analytics-job.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ This article explains how to create a T-SQL Streaming job in Azure SQL Edge (Pre
1818
1. Create the external stream input and output objects
1919
2. Define the streaming job query as part of the streaming job creation.
2020

21+
> [!NOTE]
22+
> To enable the T-SQL Streaming feature in Azure SQL Edge, enable TF 11515 as a startup option, or use the [DBCC TRACEON]( https://docs.microsoft.com/sql/t-sql/database-console-commands/dbcc-traceon-transact-sql) command. For more information on how to enable trace flags using mssql.conf file, see [Configure using mssql.conf file](configure.md#configure-using-mssqlconf-file). This requirement will be removed in future updates of Azure SQL Edge (Preview).
23+
2124
## Configure an External Stream Input and Output object
2225

2326
T-SQL Streaming makes use of the external data source functionality of SQL Server to define the data sources associated with the external stream inputs and outputs of the streaming job. The following T-SQL commands are required to create an external stream input or output object.

articles/azure-sql-edge/date-bucket-tsql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,10 +244,10 @@ SELECT DATE_BUCKET(week,(SELECT top 1 CustomerKey FROM dbo.DimCustomer where Geo
244244

245245
#### Specifying numeric expressions and scalar system functions as number and date
246246

247-
This example uses a numeric expression (-`(10/2))`, and scalar system functions (`SYSDATETIME`) as arguments for *number* and *date*.
247+
This example uses a numeric expression ((10/2)), and scalar system functions (SYSDATETIME) as arguments for number and date.
248248

249249
```sql
250-
SELECT Date_Bucket(week,-(10/2), SYSDATETIME());
250+
SELECT Date_Bucket(week,(10/2), SYSDATETIME());
251251
```
252252

253253
#### Specifying an aggregate window function as number

articles/azure-sql-edge/deploy-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,4 @@ In this quickstart, you deployed a SQL Edge Module on an IoT Edge device.
114114
## Next Steps
115115

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

articles/azure-sql-edge/features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Azure SQL Edge is available with two different editions or software plans. These
2929

3030
## Operating System
3131

32-
Azure SQL Edge containers are currently based on Ubuntu (16.04 and 18.04) and as such are only supported to run on docker hosts running Ubuntu 16.04 and 18.04. Azure SQL Edge can also run on other operating system hosts, for example, other distributions of Linux or on Windows (using Docker CE or Docker EE), however these configurations are not extensively tested by Microsoft.
32+
Azure SQL Edge containers are currently based on Ubuntu 16.04 and as such are only supported to run on docker hosts running either Ubuntu 16.04 (recommended) or Ubuntu 18.04. Azure SQL Edge can also run on other operating system hosts, for example, other distributions of Linux or on Windows (using Docker CE or Docker EE), however these configurations are not extensively tested by Microsoft.
3333

3434
Azure SQL Edge is currently only supported for deployment through Azure IoT Edge. For more information on the supported systems for Azure IoT Edge, refer [Azure IoT Edge supported systems](https://docs.microsoft.com/azure/iot-edge/support).
3535

-66.2 KB
Loading
-6.73 KB
Loading

articles/azure-sql-edge/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Azure SQL Edge is available on the Azure Marketplace and can be deployed as a mo
2828

2929
## Editions of SQL Edge
3030

31-
SQL Edge is available with three different editions or software plans. These editions have identical feature sets and only differ in terms of their usage rights and the amount of cpu/memory they support.
31+
SQL Edge is available with two different editions or software plans. These editions have identical feature sets and only differ in terms of their usage rights and the amount of cpu/memory they support.
3232

3333
|**Plan** |**Description** |
3434
|---------|---------|

articles/azure-sql-edge/tutorial-sync-data-sync.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This tutorial requires a Windows computer configured with the [Data Sync Agent f
2727

2828
* Create the tables and other necessary objects in your Azure SQL Database deployment.
2929

30-
* Create the necessary tables and objects in your Azure SQL Edge deployment. For more information, see [Using SQL Database DAC packages with SQL Edge](stream-analytics.md).
30+
* Create the necessary tables and objects in your Azure SQL Edge deployment. For more information, see [Using SQL Database DAC packages with SQL Edge](deploy-dacpac.md).
3131

3232
* Register the Azure SQL Edge instance with the Data Sync Agent for Azure SQL Data Sync. For more information, see [Add an on-premises SQL Server database](../sql-database/sql-database-get-started-sql-data-sync.md#add-on-prem).
3333

0 commit comments

Comments
 (0)