Skip to content

Commit 8fcb93a

Browse files
author
stevestein
committed
resolve issues
1 parent f7515b5 commit 8fcb93a

File tree

5 files changed

+15
-17
lines changed

5 files changed

+15
-17
lines changed

articles/azure-sql-edge/stream-data.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,16 @@ T-SQL Streaming works in exactly the same manner as [Azure Stream Analytics](htt
4646
> [!NOTE]
4747
> T-SQL Streaming only supports a subset of language surface area supported by Azure Stream Analytics. For more information on Azure Stream Analytics query language, refer [Stream Analytics Query Language](https://docs.microsoft.com/stream-analytics-query/stream-analytics-query-language-reference?).
4848
49-
## Limitations and Restrictions
49+
## Limitations and restrictions
5050

5151
The following limitations and restrictions apply to SQL Streaming.
5252

5353
- Only one streaming job can be active at any give time. Users will have to stop and already executing job before starting another job.
5454
- Each streaming job execution is single threaded. If the streaming job contains multiple queries, each query will be evaluated in serial order.
5555

56-
## Next Steps
56+
## Next steps
5757

58-
[Create a Stream Analytics job in Azure SQL Edge Preview](create-stream-analytics-job.md)
59-
[Start, Stop, Drop a stream analytics job in Azure SQL Edge Preview](overview.md)
60-
[Viewing metadata associated with stream jobs in Azure SQL Edge Preview](overview.md)
61-
[Create External Stream](overview.md)
58+
- [Create a Stream Analytics job in Azure SQL Edge Preview](create-stream-analytics-job.md)
59+
- [Start, Stop, Drop a stream analytics job in Azure SQL Edge Preview](overview.md)
60+
- [Viewing metadata associated with stream jobs in Azure SQL Edge Preview](overview.md)
61+
- [Create External Stream](overview.md)

articles/azure-sql-edge/streaming-catalog-views.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This section contains the available catalog views and functions that are related
2323
|[sys.external_streaming_jobs](sys-external-streaming-jobs.md) |Returns a row for each external streaming job created within the scope of the database.|
2424
|[sys.external_job_streams](sys-external-job-streams.md)|Returns a row each for the input or output external stream object mapped to an external streaming job.|
2525

26-
## See Also
26+
## See also
2727

2828
- [Catalog Views (Transact-SQL)](/sql/relational-databases/system-catalog-views/catalog-views-transact-sql/)
2929
- [System Views (Transact-SQL)](/sql/t-sql/language-reference/)

articles/azure-sql-edge/sys-external-job-streams.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ inner join sys.external_streaming_jobs sj on sj.object_id = js.job_id
5252

5353
The visibility of the metadata in catalog views is limited to securables that a user either owns or on which the user has been granted some permission. For more information, see [Metadata Visibility Configuration](/sql/relational-databases/security/metadata-visibility-configuration/).
5454

55-
## See Also
55+
## See also
5656

5757
- [Catalog Views (Transact-SQL)](/sql/relational-databases/system-catalog-views/catalog-views-transact-sql/)
5858
- [System Views (Transact-SQL)](/sql/t-sql/language-reference/)

articles/azure-sql-edge/sys-external-streaming-jobs.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,9 @@ Returns a row for each external streaming job created within the scope of the da
3737

3838
The visibility of the metadata in catalog views is limited to securables that a user either owns or on which the user has been granted some permission. For more information, see [Metadata Visibility Configuration](/sql/relational-databases/security/metadata-visibility-configuration/).
3939

40-
## See Also
40+
## See also
4141

42-
[T-SQL Streaming Catalog Views](overview.md)
43-
44-
[Catalog Views (Transact-SQL)](/sql/relational-databases/system-catalog-views/catalog-views-transact-sql/)
45-
46-
[System Views (Transact-SQL)](/sql/t-sql/language-reference/)
42+
- [T-SQL Streaming Catalog Views](overview.md)
43+
- [Catalog Views (Transact-SQL)](/sql/relational-databases/system-catalog-views/catalog-views-transact-sql/)
44+
- [System Views (Transact-SQL)](/sql/t-sql/language-reference/)
4745

articles/azure-sql-edge/sys-external-streams.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ Returns a row for each external stream object created within the scope of the da
3131
|**is_schema_published**|**bit**|Only the schema of the object is published.|
3232
|**max_column_id_used**|**bit**| This column is used for internal purposes and will be removed in future|
3333
|**uses_ansi_nulls**|**bit**| Stream object was created with the SET ANSI_NULLS database option ON|
34-
|**data_source_id**|**int**| The object id for the external data source represented by the stream object |
35-
|**file_format_id**|**int**| The object id for the external file format used by the stream object. The external file format is required to specify the actual layout of the data referenced by an external stream|
34+
|**data_source_id**|**int**| The object ID for the external data source represented by the stream object |
35+
|**file_format_id**|**int**| The object ID for the external file format used by the stream object. The external file format is required to specify the actual layout of the data referenced by an external stream|
3636
|**location**|**varchar(max)**| The target for the external stream object. For more information, refer [Create External Stream](overview.md) |
3737
|**input_option**|**varchar(max)**| The input options used during the creation of the external stream. For more information, refer [Create External Stream](overview.md) |
3838
|**output_option**|**varchar(max)**| The output options used during the creation of the external stream. For more information, refer [Create External Stream](overview.md) |
@@ -41,7 +41,7 @@ Returns a row for each external stream object created within the scope of the da
4141

4242
The visibility of the metadata in catalog views is limited to securables that a user either owns or on which the user has been granted some permission. For more information, see [Metadata Visibility Configuration](/sql/relational-databases/security/metadata-visibility-configuration/).
4343

44-
## See Also
44+
## See also
4545

4646
- [Catalog Views (Transact-SQL)](/sql/relational-databases/system-catalog-views/catalog-views-transact-sql/)
4747
- [System Views (Transact-SQL)](/sql/t-sql/language-reference/)

0 commit comments

Comments
 (0)