You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/relational-databases/json/add-a-root-node-to-json-output-with-the-root-option-sql-server.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -150,6 +150,9 @@ SELECT TOP 5
150
150
151
151
### Microsoft videos
152
152
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
+
153
156
For a visual introduction to the built-in JSON support in SQL Server and Azure SQL Database, see the following videos:
154
157
155
158
-[SQL Server 2016 and JSON Support](https://channel9.msdn.com/Shows/Data-Exposed/SQL-Server-2016-and-JSON-Support)
Copy file name to clipboardExpand all lines: docs/relational-databases/json/convert-json-data-to-rows-and-columns-with-openjson-sql-server.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -141,6 +141,9 @@ You can change the compatibility level of a database by using the following comm
141
141
142
142
### Microsoft videos
143
143
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
+
144
147
For a visual introduction to the built-in JSON support in SQL Server and Azure SQL Database, see the following videos:
145
148
146
149
-[SQL Server 2016 and JSON Support](https://channel9.msdn.com/Shows/Data-Exposed/SQL-Server-2016-and-JSON-Support)
Copy file name to clipboardExpand all lines: docs/relational-databases/json/include-null-values-in-json-include-null-values-option.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,9 @@ FOR JSON AUTO, INCLUDE_NULL_VALUES
54
54
55
55
### Microsoft videos
56
56
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
+
57
60
For a visual introduction to the built-in JSON support in SQL Server and Azure SQL Database, see the following videos:
58
61
59
62
-[SQL Server 2016 and JSON Support](https://channel9.msdn.com/Shows/Data-Exposed/SQL-Server-2016-and-JSON-Support)
Copy file name to clipboardExpand all lines: docs/relational-databases/json/index-json-data.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -158,6 +158,9 @@ ORDER BY JSON_VALUE(json,'$.name')
158
158
159
159
### Microsoft videos
160
160
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
+
161
164
For a visual introduction to the built-in JSON support in SQL Server and Azure SQL Database, see the following videos:
162
165
163
166
-[SQL Server 2016 and JSON Support](https://channel9.msdn.com/Shows/Data-Exposed/SQL-Server-2016-and-JSON-Support)
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.
25
25
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:
27
31
28
32
*JSON as a bridge between NoSQL and relational worlds*
@@ -54,10 +60,14 @@ By using SQL Server built-in functions and operators, you can do the following t
54
60
55
61
## Key JSON capabilities of SQL Server and SQL Database
56
62
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:
### Extract values from JSON text and use them in queries
63
73
@@ -398,10 +408,15 @@ Here's what you can do with the scripts that are included in the file:
398
408
399
409
### Microsoft videos
400
410
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
+
401
414
For a visual introduction to the built-in JSON support in SQL Server and Azure SQL Database, see the following video:
402
415
416
+
<!-- Pending channel 9 migration
403
417
*Using JSON in SQL Server 2016 and Azure SQL Database*
Copy file name to clipboardExpand all lines: docs/relational-databases/json/json-path-expressions-sql-server.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -106,6 +106,9 @@ SELECT value
106
106
107
107
### Microsoft videos
108
108
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
+
109
112
For a visual introduction to the built-in JSON support in SQL Server and Azure SQL Database, see the following videos:
110
113
111
114
-[SQL Server 2016 and JSON Support](https://channel9.msdn.com/Shows/Data-Exposed/SQL-Server-2016-and-JSON-Support)
Copy file name to clipboardExpand all lines: docs/relational-databases/json/optimize-json-processing-with-in-memory-oltp.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -161,6 +161,9 @@ GO
161
161
162
162
### Microsoft videos
163
163
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
+
164
167
For a visual introduction to the built-in JSON support in SQL Server and Azure SQL Database, see the following videos:
165
168
166
169
-[SQL Server 2016 and JSON Support](https://channel9.msdn.com/Shows/Data-Exposed/SQL-Server-2016-and-JSON-Support)
Copy file name to clipboardExpand all lines: docs/relational-databases/json/remove-square-brackets-from-json-without-array-wrapper-option.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -103,6 +103,9 @@ FOR JSON PATH, WITHOUT_ARRAY_WRAPPER
103
103
104
104
### Microsoft videos
105
105
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
+
106
109
For a visual introduction to the built-in JSON support in SQL Server and Azure SQL Database, see the following videos:
107
110
108
111
-[SQL Server 2016 and JSON Support](https://channel9.msdn.com/Shows/Data-Exposed/SQL-Server-2016-and-JSON-Support)
Copy file name to clipboardExpand all lines: docs/relational-databases/json/solve-common-issues-with-json-in-sql-server.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -142,6 +142,9 @@ WHERE [key] = 'color'
142
142
143
143
### Microsoft videos
144
144
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
+
145
148
For a visual introduction to the built-in JSON support in SQL Server and Azure SQL Database, see the following videos:
146
149
147
150
-[SQL Server 2016 and JSON Support](https://channel9.msdn.com/Shows/Data-Exposed/SQL-Server-2016-and-JSON-Support)
Copy file name to clipboardExpand all lines: docs/relational-databases/json/store-json-documents-in-sql-tables.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -161,6 +161,9 @@ Native JSON functions in SQL Server and SQL Database enable you to process JSON
161
161
162
162
### Microsoft videos
163
163
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
+
164
167
For a visual introduction to the built-in JSON support in SQL Server and Azure SQL Database, see the following videos:
165
168
166
169
-[SQL Server 2016 and JSON Support](https://channel9.msdn.com/Shows/Data-Exposed/SQL-Server-2016-and-JSON-Support)
0 commit comments