Skip to content

Commit 90050de

Browse files
authored
Merge pull request #20751 from MikeRayMSFT/20211124-json-embedded
Replace embedded video links
2 parents cad08c0 + f154291 commit 90050de

12 files changed

Lines changed: 50 additions & 2 deletions

docs/relational-databases/json/add-a-root-node-to-json-output-with-the-root-option-sql-server.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,9 @@ SELECT TOP 5
150150

151151
### Microsoft videos
152152

153+
> [!NOTE]
154+
> Some of the video links in this section may not work at this time. Microsoft is migrating content formerly on Channel 9 to a new platform. We will update the links as the videos are migrated to the new platform
155+
153156
For a visual introduction to the built-in JSON support in SQL Server and Azure SQL Database, see the following videos:
154157

155158
- [SQL Server 2016 and JSON Support](https://channel9.msdn.com/Shows/Data-Exposed/SQL-Server-2016-and-JSON-Support)

docs/relational-databases/json/convert-json-data-to-rows-and-columns-with-openjson-sql-server.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,9 @@ You can change the compatibility level of a database by using the following comm
141141

142142
### Microsoft videos
143143

144+
> [!NOTE]
145+
> Some of the video links in this section may not work at this time. Microsoft is migrating content formerly on Channel 9 to a new platform. We will update the links as the videos are migrated to the new platform
146+
144147
For a visual introduction to the built-in JSON support in SQL Server and Azure SQL Database, see the following videos:
145148

146149
- [SQL Server 2016 and JSON Support](https://channel9.msdn.com/Shows/Data-Exposed/SQL-Server-2016-and-JSON-Support)

docs/relational-databases/json/include-null-values-in-json-include-null-values-option.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ FOR JSON AUTO, INCLUDE_NULL_VALUES
5454

5555
### Microsoft videos
5656

57+
> [!NOTE]
58+
> Some of the video links in this section may not work at this time. Microsoft is migrating content formerly on Channel 9 to a new platform. We will update the links as the videos are migrated to the new platform
59+
5760
For a visual introduction to the built-in JSON support in SQL Server and Azure SQL Database, see the following videos:
5861

5962
- [SQL Server 2016 and JSON Support](https://channel9.msdn.com/Shows/Data-Exposed/SQL-Server-2016-and-JSON-Support)

docs/relational-databases/json/index-json-data.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,9 @@ ORDER BY JSON_VALUE(json,'$.name')
158158

159159
### Microsoft videos
160160

161+
> [!NOTE]
162+
> Some of the video links in this section may not work at this time. Microsoft is migrating content formerly on Channel 9 to a new platform. We will update the links as the videos are migrated to the new platform
163+
161164
For a visual introduction to the built-in JSON support in SQL Server and Azure SQL Database, see the following videos:
162165

163166
- [SQL Server 2016 and JSON Support](https://channel9.msdn.com/Shows/Data-Exposed/SQL-Server-2016-and-JSON-Support)

docs/relational-databases/json/json-data-sql-server.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,17 @@ monikerRange: "=azuresqldb-current||= azure-sqldw-latest||>=sql-server-2016||>=s
2323

2424
JSON is a popular textual data format that's used for exchanging data in modern web and mobile applications. JSON is also used for storing unstructured data in log files or NoSQL databases such as Microsoft Azure Cosmos DB. Many REST web services return results that are formatted as JSON text or accept data that's formatted as JSON. For example, most Azure services, such as Azure Search, Azure Storage, and Azure Cosmos DB, have REST endpoints that return or consume JSON. JSON is also the main format for exchanging data between webpages and web servers by using AJAX calls.
2525

26-
JSON functions, first introduced in SQL Server 2016, enable you to combine NoSQL and relational concepts in the same database. Now you can combine classic relational columns with columns that contain documents formatted as JSON text in the same table, parse and import JSON documents in relational structures, or format relational data to JSON text. You see how JSON functions connect relational and NoSQL concepts in SQL Server and Azure SQL Database in the following video:
26+
JSON functions, first introduced in SQL Server 2016, enable you to combine NoSQL and relational concepts in the same database. Now you can combine classic relational columns with columns that contain documents formatted as JSON text in the same table, parse and import JSON documents in relational structures, or format relational data to JSON text.
27+
28+
<!-- Pending channel 9 migration
29+
30+
You see how JSON functions connect relational and NoSQL concepts in SQL Server and Azure SQL Database in the following video:
2731
2832
*JSON as a bridge between NoSQL and relational worlds*
2933
> [!VIDEO https://channel9.msdn.com/events/DataDriven/SQLServer2016/JSON-as-a-bridge-betwen-NoSQL-and-relational-worlds/player]
3034
35+
-->
36+
3137
Here's an example of JSON text:
3238

3339
```json
@@ -54,10 +60,14 @@ By using SQL Server built-in functions and operators, you can do the following t
5460

5561
## Key JSON capabilities of SQL Server and SQL Database
5662

57-
The next sections discuss the key capabilities that SQL Server provides with its built-in JSON support. You can see how to use JSON functions and operators in the following video:
63+
The next sections discuss the key capabilities that SQL Server provides with its built-in JSON support.
64+
65+
<!-- Pending channel 9 migration
66+
You can see how to use JSON functions and operators in the following video:
5867
5968
*SQL Server 2016 and JSON Support*
6069
> [!VIDEO https://channel9.msdn.com/Shows/Data-Exposed/SQL-Server-2016-and-JSON-Support/player?WT.mc_id=dataexposed-c9-niner]
70+
-->
6171

6272
### Extract values from JSON text and use them in queries
6373

@@ -398,10 +408,15 @@ Here's what you can do with the scripts that are included in the file:
398408

399409
### Microsoft videos
400410

411+
> [!NOTE]
412+
> Some of the video links in this section may not work at this time. Microsoft is migrating content formerly on Channel 9 to a new platform. We will update the links as the videos are migrated to the new platform
413+
401414
For a visual introduction to the built-in JSON support in SQL Server and Azure SQL Database, see the following video:
402415

416+
<!-- Pending channel 9 migration
403417
*Using JSON in SQL Server 2016 and Azure SQL Database*
404418
> [!VIDEO https://channel9.msdn.com/Shows/Data-Exposed/Using-JSON-in-SQL-Server-2016-and-Azure-SQL-Database/player?WT.mc_id=dataexposed-c9-niner]
419+
-->
405420

406421
*Building REST API with SQL Server using JSON functions*
407422
> [!VIDEO https://www.youtube.com/embed/0m6GXF3-5WI]

docs/relational-databases/json/json-path-expressions-sql-server.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,9 @@ SELECT value
106106

107107
### Microsoft videos
108108

109+
> [!NOTE]
110+
> Some of the video links in this section may not work at this time. Microsoft is migrating content formerly on Channel 9 to a new platform. We will update the links as the videos are migrated to the new platform
111+
109112
For a visual introduction to the built-in JSON support in SQL Server and Azure SQL Database, see the following videos:
110113

111114
- [SQL Server 2016 and JSON Support](https://channel9.msdn.com/Shows/Data-Exposed/SQL-Server-2016-and-JSON-Support)

docs/relational-databases/json/optimize-json-processing-with-in-memory-oltp.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,9 @@ GO
161161

162162
### Microsoft videos
163163

164+
> [!NOTE]
165+
> Some of the video links in this section may not work at this time. Microsoft is migrating content formerly on Channel 9 to a new platform. We will update the links as the videos are migrated to the new platform
166+
164167
For a visual introduction to the built-in JSON support in SQL Server and Azure SQL Database, see the following videos:
165168

166169
- [SQL Server 2016 and JSON Support](https://channel9.msdn.com/Shows/Data-Exposed/SQL-Server-2016-and-JSON-Support)

docs/relational-databases/json/remove-square-brackets-from-json-without-array-wrapper-option.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@ FOR JSON PATH, WITHOUT_ARRAY_WRAPPER
103103

104104
### Microsoft videos
105105

106+
> [!NOTE]
107+
> Some of the video links in this section may not work at this time. Microsoft is migrating content formerly on Channel 9 to a new platform. We will update the links as the videos are migrated to the new platform
108+
106109
For a visual introduction to the built-in JSON support in SQL Server and Azure SQL Database, see the following videos:
107110

108111
- [SQL Server 2016 and JSON Support](https://channel9.msdn.com/Shows/Data-Exposed/SQL-Server-2016-and-JSON-Support)

docs/relational-databases/json/solve-common-issues-with-json-in-sql-server.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,9 @@ WHERE [key] = 'color'
142142

143143
### Microsoft videos
144144

145+
> [!NOTE]
146+
> Some of the video links in this section may not work at this time. Microsoft is migrating content formerly on Channel 9 to a new platform. We will update the links as the videos are migrated to the new platform
147+
145148
For a visual introduction to the built-in JSON support in SQL Server and Azure SQL Database, see the following videos:
146149

147150
- [SQL Server 2016 and JSON Support](https://channel9.msdn.com/Shows/Data-Exposed/SQL-Server-2016-and-JSON-Support)

docs/relational-databases/json/store-json-documents-in-sql-tables.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,9 @@ Native JSON functions in SQL Server and SQL Database enable you to process JSON
161161

162162
### Microsoft videos
163163

164+
> [!NOTE]
165+
> Some of the video links in this section may not work at this time. Microsoft is migrating content formerly on Channel 9 to a new platform. We will update the links as the videos are migrated to the new platform
166+
164167
For a visual introduction to the built-in JSON support in SQL Server and Azure SQL Database, see the following videos:
165168

166169
- [SQL Server 2016 and JSON Support](https://channel9.msdn.com/Shows/Data-Exposed/SQL-Server-2016-and-JSON-Support)

0 commit comments

Comments
 (0)