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/polybase/polybase-configure-azure-blob-storage.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ First, configure SQL Server PolyBase to use Azure blob storage.
39
39
GO
40
40
```
41
41
42
-
2.You must restart SQL Server using **services.msc**. Restarting SQL Server restarts these services:
42
+
2.Restart SQL Server using **services.msc**. Restarting SQL Server restarts these services:
43
43
44
44
- SQL Server PolyBase Data Movement Service
45
45
- SQL Server PolyBase Engine
@@ -50,7 +50,7 @@ First, configure SQL Server PolyBase to use Azure blob storage.
50
50
51
51
To query the data in your Hadoop data source, you must define an external table to use in Transact-SQL queries. The following steps describe how to configure the external table.
52
52
53
-
1. Create a master key on the database. This is required to encrypt the credential secret.
53
+
1. Create a master key on the database. The master key is required to encrypt the credential secret.
54
54
55
55
```sql
56
56
CREATE MASTER KEY ENCRYPTION BY PASSWORD ='S0me!nfo';
@@ -114,15 +114,15 @@ To query the data in your Hadoop data source, you must define an external table
114
114
115
115
There are three functions that PolyBase is suited for:
116
116
117
-
- Ad-hoc queries against external tables.
117
+
- Adhoc queries against external tables.
118
118
- Importing data.
119
119
- Exporting data.
120
120
121
121
The following queries provide example with fictional car sensor data.
122
122
123
-
### Ad-hoc queries
123
+
### Adhoc queries
124
124
125
-
The following ad-hoc query joins relational with Hadoop data. It selects customers who drive faster than 35 mph,joining structured customer data stored in SQL Server with car sensor data stored in Hadoop.
125
+
The following adhoc query joins relational with Hadoop data. It selects customers who drive faster than 35 mph, and joins to structured customer data stored in SQL Server with car sensor data stored in Hadoop.
@@ -153,7 +153,7 @@ CREATE CLUSTERED COLUMNSTORE INDEX CCI_FastCustomers ON Fast_Customers;
153
153
154
154
### Exporting data
155
155
156
-
The following query exports data from SQL Server to Azure Blob Storage. To do this, you first have to enable PolyBase export. The create an external table for the destination before exporting data to it.
156
+
The following query exports data from SQL Server to Azure Blob Storage. First enable PolyBase export. Then, create an external table for the destination before exporting data to it.
0 commit comments