Skip to content

Commit 0113fc4

Browse files
committed
resolved conflict
2 parents 0594948 + 043f819 commit 0113fc4

496 files changed

Lines changed: 2075 additions & 1263 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/ado/guide/data/calling-a-stored-procedure-with-a-command.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,4 @@ End Function
128128
```
129129

130130
## See Also
131-
[Knowledge Base article 117500](https://go.microsoft.com/fwlink/?LinkId=117500)
131+
[Knowledge Base article 117500](https://www.betaarchive.com/wiki/index.php?title=Microsoft_KB_Archive/185125)

docs/analytics-platform-system/polybase-configure-azure-blob-storage.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: "Use PolyBase to access external data in Azure Blob storage"
3-
description: Explains how to use PolyBase on a Parallel Data Warehouse (APS) to query external data in Azure Blob storage.
2+
title: "Use PolyBase to access external data in Azure Blob Storage"
3+
description: Explains how to use PolyBase on a Parallel Data Warehouse (APS) to query external data in Azure Blob Storage.
44
author: mzaman1
55
ms.prod: sql
66
ms.technology: data-warehouse
@@ -10,28 +10,28 @@ ms.author: murshedz
1010
ms.reviewer: martinle
1111
ms.custom: seo-dt-2019
1212
---
13-
# Configure PolyBase to access external data in Azure Blob storage
13+
# Configure PolyBase to access external data in Azure Blob Storage
1414

15-
The article explains how to use PolyBase on a SQL Server instance to query external data in Azure Blob storage.
15+
The article explains how to use PolyBase on a SQL Server instance to query external data in Azure Blob Storage.
1616

1717
> [!NOTE]
18-
> APS currently only supports standard general purpose v1 locally redundant (LRS) Azure Blob storage.
18+
> APS currently only supports standard general purpose v1 locally redundant (LRS) Azure Blob Storage.
1919
2020
## Prerequisites
2121

22-
- Azure Blob storage in your subscription.
23-
- A container created in the Azure Blob storage.
22+
- Azure Blob Storage in your subscription.
23+
- A container created in the Azure Blob Storage.
2424

25-
### Configure Azure Blob storage connectivity
25+
### Configure Azure Blob Storage connectivity
2626

27-
First, configure APS to use Azure Blob storage.
27+
First, configure APS to use Azure Blob Storage.
2828

29-
1. Run [sp_configure](../relational-databases/system-stored-procedures/sp-configure-transact-sql.md) with 'hadoop connectivity' set to an Azure Blob storage provider. To find the value for providers, see [PolyBase Connectivity Configuration](../database-engine/configure-windows/polybase-connectivity-configuration-transact-sql.md).
29+
1. Run [sp_configure](../relational-databases/system-stored-procedures/sp-configure-transact-sql.md) with 'hadoop connectivity' set to an Azure Blob Storage provider. To find the value for providers, see [PolyBase Connectivity Configuration](../database-engine/configure-windows/polybase-connectivity-configuration-transact-sql.md).
3030

3131
```sql
3232
-- Values map to various external data sources.
3333
-- Example: value 7 stands for Hortonworks HDP 2.1 to 2.6 on Linux,
34-
-- 2.1 to 2.3 on Windows Server, and Azure Blob storage
34+
-- 2.1 to 2.3 on Windows Server, and Azure Blob Storage
3535
sp_configure @configname = 'hadoop connectivity', @configvalue = 7;
3636
GO
3737

@@ -43,15 +43,15 @@ First, configure APS to use Azure Blob storage.
4343

4444
## Configure an external table
4545

46-
To query the data in your Azure Blob storage, you must define an external table to use in Transact-SQL queries. The following steps describe how to configure the external table.
46+
To query the data in your Azure Blob Storage, you must define an external table to use in Transact-SQL queries. The following steps describe how to configure the external table.
4747

4848
1. Create a master key on the database. It is required to encrypt the credential secret.
4949

5050
```sql
5151
CREATE MASTER KEY ENCRYPTION BY PASSWORD = 'S0me!nfo';
5252
```
5353

54-
1. Create a database scoped credential for Azure Blob storage.
54+
1. Create a database scoped credential for Azure Blob Storage.
5555

5656
```sql
5757
-- IDENTITY: any string (this is not used for authentication to Azure storage).
@@ -75,7 +75,7 @@ To query the data in your Azure Blob storage, you must define an external table
7575
1. Create an external file format with [CREATE EXTERNAL FILE FORMAT](../t-sql/statements/create-external-file-format-transact-sql.md).
7676

7777
```sql
78-
-- FORMAT TYPE: Type of format in Azure Blob storage (DELIMITEDTEXT, RCFILE, ORC, PARQUET).
78+
-- FORMAT TYPE: Type of format in Azure Blob Storage (DELIMITEDTEXT, RCFILE, ORC, PARQUET).
7979
-- In this example, the files are pipe (|) delimited
8080
CREATE EXTERNAL FILE FORMAT TextFileFormat WITH (
8181
FORMAT_TYPE = DELIMITEDTEXT,
@@ -118,7 +118,7 @@ The following queries provide example with fictional car sensor data.
118118

119119
### Ad hoc queries
120120

121-
The following ad hoc query joins relational with data in Azure Blob storage. It selects customers who drive faster than 35 mph, joining structured customer data stored in SQL Server with car sensor data stored in Azure Blob storage.
121+
The following ad hoc query joins relational with data in Azure Blob Storage. It selects customers who drive faster than 35 mph, joining structured customer data stored in SQL Server with car sensor data stored in Azure Blob Storage.
122122

123123
```sql
124124
SELECT DISTINCT Insured_Customers.FirstName,Insured_Customers.LastName,
@@ -149,10 +149,10 @@ ON Insured_Customers.CustomerKey = SensorD.CustomerKey
149149

150150
### Exporting data
151151

152-
The following query exports data from APS to Azure Blob storage. It can be used to archive relational data to Azure Blob storage while still be able to query it.
152+
The following query exports data from APS to Azure Blob Storage. It can be used to archive relational data to Azure Blob Storage while still be able to query it.
153153

154154
```sql
155-
-- Export data: Move old data to Azure Blob storage while keeping it query-able via an external table.
155+
-- Export data: Move old data to Azure Blob Storage while keeping it query-able via an external table.
156156
CREATE EXTERNAL TABLE [dbo].[FastCustomers2009]
157157
WITH (
158158
LOCATION='/archive/customer/2009',

docs/azure-data-studio/download-azure-data-studio.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: yualan
88
ms.author: alayu
99
ms.reviewer: maghan
1010
ms.custom: seodec18
11-
ms.date: 12/11/2020
11+
ms.date: 1/22/2020
1212
---
1313

1414
# Download and install Azure Data Studio
@@ -21,9 +21,9 @@ Azure Data Studio offers a modern editor experience with IntelliSense, code snip
2121

2222
| Platform | Download | Release date | Version |
2323
|----------|----------|--------------|---------|
24-
| Windows | [User Installer (recommended)](https://go.microsoft.com/fwlink/?linkid=2150927)<br>[System Installer](https://go.microsoft.com/fwlink/?linkid=2150928)<br>[.zip](https://go.microsoft.com/fwlink/?linkid=2151312) | December 11, 2020 | 1.25.1 |
25-
| macOS | [.zip](https://go.microsoft.com/fwlink/?linkid=2151311) | December 11, 2020 | 1.25.1 |
26-
| Linux | [.deb](https://go.microsoft.com/fwlink/?linkid=2151506)<br>[.rpm](https://go.microsoft.com/fwlink/?linkid=2151407)<br>[.tar.gz](https://go.microsoft.com/fwlink/?linkid=2151508) | December 11, 2020 | 1.25.1 |
24+
| Windows | [User Installer (recommended)](https://go.microsoft.com/fwlink/?linkid=2150927)<br>[System Installer](https://go.microsoft.com/fwlink/?linkid=2150928)<br>[.zip](https://go.microsoft.com/fwlink/?linkid=2151312) | January 22, 2020 | 1.25.2 |
25+
| macOS | [.zip](https://go.microsoft.com/fwlink/?linkid=2151311) | January 22, 2020 | 1.25.2 |
26+
| Linux | [.deb](https://go.microsoft.com/fwlink/?linkid=2151506)<br>[.rpm](https://go.microsoft.com/fwlink/?linkid=2151407)<br>[.tar.gz](https://go.microsoft.com/fwlink/?linkid=2151508) | January 22, 2020 | 1.25.2 |
2727

2828
**For details about the latest release, see the [release notes](./release-notes-azure-data-studio.md).**
2929

docs/azure-data-studio/release-notes-azure-data-studio.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,21 @@ author: yualan
88
ms.author: alayu
99
ms.reviewer: maghan
1010
ms.custom: seodec18
11-
ms.date: 12/9/2020
11+
ms.date: 1/22/2020
1212
---
1313

1414
# Release notes for Azure Data Studio
1515

1616
**[Download and install the latest release!](./download-azure-data-studio.md)**
1717

18+
## December 2020 (hotfix)
19+
20+
January 22, 2020 &nbsp; / &nbsp; version: 1.25.2
21+
22+
| Change | Details |
23+
| ------ | ------- |
24+
| Fix bug [#13899](https://github.com/microsoft/azuredatastudio/issues/13899)| Scrolling to the appropriate cross-reference links in Notebooks |
25+
1826
## December 2020
1927

2028
December 9, 2020 &nbsp; / &nbsp; version: 1.25.0
@@ -953,4 +961,4 @@ See one of the following quickstarts to get started:
953961

954962
Contribute to Azure Data Studio:
955963

956-
- [https://github.com/Microsoft/azuredatastudio](https://github.com/Microsoft/azuredatastudio)
964+
- [https://github.com/Microsoft/azuredatastudio](https://github.com/Microsoft/azuredatastudio)

docs/big-data-cluster/private-deploy.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ This section shows you deploy a BDC cluster in Azure Kubernetes Service (AKS) pr
3131

3232
## Create a private AKS cluster with advanced networking
3333

34-
```console
34+
```bash
3535

3636
export REGION_NAME=<your Azure region >
3737
export RESOURCE_GROUP=< your resource group name >
@@ -65,7 +65,7 @@ echo $SUBNET_ID
6565

6666
To be able to get to next step, you need to provision an AKS cluster with Standard Load Balancer with private cluster feature enabled. Your command will look like as follows:
6767

68-
```console
68+
```bash
6969
az aks create \
7070
--resource-group $RESOURCE_GROUP \
7171
--name $AKS_NAME \
@@ -85,21 +85,21 @@ After a successful deployment, you can go to `<MC_yourakscluster>` resource grou
8585

8686
## Connect to an AKS cluster
8787

88-
```console
88+
```azurecli
8989
az aks get-credentials -n $AKS_NAME -g $RESOURCE_GROUP
9090
```
9191

9292
## Build Big Data Cluster (BDC) deployment profile
9393

9494
After connecting to an AKS cluster, you can start to deploy BDC, and you can prepare the environment variable and initiate a deployment:
9595

96-
```console
96+
```azurecli
9797
azdata bdc config init --source aks-dev-test --target private-bdc-aks --force
9898
```
9999

100100
Generate and config BDC custom deployment profile:
101101

102-
```console
102+
```azurecli
103103
azdata bdc config replace -c private-bdc-aks/control.json -j "$.spec.docker.imageTag=2019-CU6-ubuntu-16.04"
104104
azdata bdc config replace -c private-bdc-aks/control.json -j "$.spec.storage.data.className=default"
105105
azdata bdc config replace -c private-bdc-aks/control.json -j "$.spec.storage.logs.className=default"
@@ -118,13 +118,13 @@ In case you are [deploying a SQL Server Big Data Cluster (SQL-BDC) with high ava
118118

119119
The following example sets the `ServiceType` as `NodePort`:
120120

121-
```console
121+
```azurecli
122122
azdata bdc config replace -c private-bdc-aks /bdc.json -j "$.spec.resources.master.spec.endpoints[1].serviceType=NodePort"
123123
```
124124

125125
## Deploy BDC in AKS private cluster
126126

127-
```console
127+
```azurecli
128128
export AZDATA_USERNAME=<your bdcadmin username>
129129
export AZDATA_PASSWORD=< your bdcadmin password>
130130

docs/big-data-cluster/quickstart-big-data-cluster-deploy-aro.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The default big data cluster deployment used here consists of a SQL Master insta
3939

4040
The script uses Azure CLI to automate the creation of an ARO cluster. Before running the script, you must log in to your Azure account with Azure CLI at least once. Run the following command from a command prompt.
4141

42-
```terminal
42+
```azurecli
4343
az login
4444
```
4545

@@ -53,7 +53,7 @@ az login
5353

5454
1. Run the script using:
5555

56-
```terminal
56+
```console
5757
python deploy-sql-big-data-aro.py
5858
```
5959

@@ -77,7 +77,7 @@ If you are testing [!INCLUDE[big-data-clusters-2019](../includes/ssbigdatacluste
7777
7878
Run the following Azure CLI command to remove the big data cluster and the ARO service in Azure (replace `<resource group name>` with the **Azure resource group** you specified in the deployment script):
7979

80-
```terminal
80+
```azurecli
8181
az group delete -n <resource group name>
8282
```
8383

docs/connect/ado-net/sql/sqlclient-support-always-encrypted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ To enable enclave computations for a database connection, you need to set the fo
8282
- `Enclave Attestation URL` - specifies an attestation URL (an attestation service endpoint). You need to obtain an attestation URL for your environment from your attestation service administrator.
8383

8484
- If you're using [!INCLUDE[ssnoversion-md](../../../includes/ssnoversion-md.md)] and Host Guardian Service (HGS), see [Determine and share the HGS attestation URL](../../../relational-databases/security/encryption/always-encrypted-enclaves-host-guardian-service-deploy.md#step-6-determine-and-share-the-hgs-attestation-url).
85-
- If you're using [!INCLUDE[ssSDSfull](../../../includes/sssdsfull-md.md)] and Microsoft Azure Attestation, see [Determine the attestation URL for your attestation policy](/azure-sql/database/always-encrypted-enclaves-configure-attestation#determine-the-attestation-url-for-your-attestation-policy).
85+
- If you're using [!INCLUDE[ssSDSfull](../../../includes/sssdsfull-md.md)] and Microsoft Azure Attestation, see [Determine the attestation URL for your attestation policy](/sql/relational-databases/security/encryption/always-encrypted-enclaves?view=sql-server-ver15#secure-enclave-attestation).
8686

8787
For a step-by-step tutorial, see [Tutorial: Develop a .NET application using Always Encrypted with secure enclaves](tutorial-always-encrypted-enclaves-develop-net-apps.md).
8888

docs/connect/jdbc/download-microsoft-jdbc-driver-for-sql-server.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Download Microsoft JDBC Driver for SQL Server
33
description: "Download the Microsoft JDBC Driver for SQL Server to develop Java applications that connect to SQL Server and Azure SQL Database."
4-
ms.date: 08/24/2020
4+
ms.date: 01/29/2021
55
ms.prod: sql
66
ms.prod_service: connectivity
77
ms.reviewer: ""
@@ -17,15 +17,15 @@ The Microsoft JDBC Driver for SQL Server is a Type 4 JDBC driver that provides d
1717

1818
## Download
1919

20-
Version 8.4 is the latest general availability (GA) version. It supports Java 8, 11, and 14. If you need to run on a Java runtime older than that, see the [Java and JDBC specification support matrix](microsoft-jdbc-driver-for-sql-server-support-matrix.md#java-and-jdbc-specification-support) to see if there is a supported driver version you can use. We are continually improving Java connectivity support. As such we highly recommend that you work with the latest version of Microsoft JDBC driver.
20+
Version 9.2 is the latest general availability (GA) version. It supports Java 8, 11, and 15. If you need to run on a Java runtime older than that, see the [Java and JDBC specification support matrix](microsoft-jdbc-driver-for-sql-server-support-matrix.md#java-and-jdbc-specification-support) to see if there is a supported driver version you can use. We are continually improving Java connectivity support. As such we highly recommend that you work with the latest version of Microsoft JDBC driver.
2121

22-
**[![Download](../../ssms/media/download-icon.png) Download Microsoft JDBC Driver 8.4 for SQL Server (zip)](https://go.microsoft.com/fwlink/?linkid=2137600)**
23-
**[![Download](../../ssms/media/download-icon.png) Download Microsoft JDBC Driver 8.4 for SQL Server (tar.gz)](https://go.microsoft.com/fwlink/?linkid=2137502)**
22+
**[![Download](../../ssms/media/download-icon.png) Download Microsoft JDBC Driver 9.2 for SQL Server (zip)](https://go.microsoft.com/fwlink/?linkid=2153622)**
23+
**[![Download](../../ssms/media/download-icon.png) Download Microsoft JDBC Driver 9.2 for SQL Server (tar.gz)](https://go.microsoft.com/fwlink/?linkid=2153521)**
2424

2525
### Version information
2626

27-
- Release number: 8.4.1
28-
- Released: August 27, 2020
27+
- Release number: 9.2.0
28+
- Released: January 29, 2021
2929

3030
When you download the driver, there are multiple JAR files. The name of the JAR file indicates the version of Java that it supports.
3131

@@ -36,11 +36,11 @@ When you download the driver, there are multiple JAR files. The name of the JAR
3636

3737
This release of Microsoft JDBC Driver for SQL Server is available in the following languages:
3838

39-
Microsoft JDBC Driver 8.4.1 for SQL Server (zip):
40-
[Chinese (Simplified)](https://go.microsoft.com/fwlink/?linkid=2137600&clcid=0x804) | [Chinese (Traditional)](https://go.microsoft.com/fwlink/?linkid=2137600&clcid=0x404) | [English (United States)](https://go.microsoft.com/fwlink/?linkid=2137600&clcid=0x409) | [French](https://go.microsoft.com/fwlink/?linkid=2137600&clcid=0x40c) | [German](https://go.microsoft.com/fwlink/?linkid=2137600&clcid=0x407) | [Italian](https://go.microsoft.com/fwlink/?linkid=2137600&clcid=0x410) | [Japanese](https://go.microsoft.com/fwlink/?linkid=2137600&clcid=0x411) | [Korean](https://go.microsoft.com/fwlink/?linkid=2137600&clcid=0x412) | [Portuguese (Brazil)](https://go.microsoft.com/fwlink/?linkid=2137600&clcid=0x416) | [Russian](https://go.microsoft.com/fwlink/?linkid=2137600&clcid=0x419) | [Spanish](https://go.microsoft.com/fwlink/?linkid=2137600&clcid=0x40a)
39+
Microsoft JDBC Driver 9.2.0 for SQL Server (zip):
40+
[Chinese (Simplified)](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x804) | [Chinese (Traditional)](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x404) | [English (United States)](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x409) | [French](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x40c) | [German](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x407) | [Italian](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x410) | [Japanese](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x411) | [Korean](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x412) | [Portuguese (Brazil)](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x416) | [Russian](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x419) | [Spanish](https://go.microsoft.com/fwlink/?linkid=2153622&clcid=0x40a)
4141

42-
Microsoft JDBC Driver 8.4.1 for SQL Server (tar.gz):
43-
[Chinese (Simplified)](https://go.microsoft.com/fwlink/?linkid=2137502&clcid=0x804) | [Chinese (Traditional)](https://go.microsoft.com/fwlink/?linkid=2137502&clcid=0x404) | [English (United States)](https://go.microsoft.com/fwlink/?linkid=2137502&clcid=0x409) | [French](https://go.microsoft.com/fwlink/?linkid=2137502&clcid=0x40c) | [German](https://go.microsoft.com/fwlink/?linkid=2137502&clcid=0x407) | [Italian](https://go.microsoft.com/fwlink/?linkid=2137502&clcid=0x410) | [Japanese](https://go.microsoft.com/fwlink/?linkid=2137502&clcid=0x411) | [Korean](https://go.microsoft.com/fwlink/?linkid=2137502&clcid=0x412) | [Portuguese (Brazil)](https://go.microsoft.com/fwlink/?linkid=2137502&clcid=0x416) | [Russian](https://go.microsoft.com/fwlink/?linkid=2137502&clcid=0x419) | [Spanish](https://go.microsoft.com/fwlink/?linkid=2137502&clcid=0x40a)
42+
Microsoft JDBC Driver 9.2.0 for SQL Server (tar.gz):
43+
[Chinese (Simplified)](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x804) | [Chinese (Traditional)](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x404) | [English (United States)](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x409) | [French](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x40c) | [German](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x407) | [Italian](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x410) | [Japanese](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x411) | [Korean](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x412) | [Portuguese (Brazil)](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x416) | [Russian](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x419) | [Spanish](https://go.microsoft.com/fwlink/?linkid=2153521&clcid=0x40a)
4444

4545
### Release notes
4646

@@ -58,7 +58,7 @@ The JDBC driver can be added to a Maven project by adding it as a dependency in
5858
<dependency>
5959
<groupId>com.microsoft.sqlserver</groupId>
6060
<artifactId>mssql-jdbc</artifactId>
61-
<version>8.4.1.jre11</version>
61+
<version>9.2.0.jre11</version>
6262
</dependency>
6363
```
6464

0 commit comments

Comments
 (0)