Skip to content

Commit f35be6f

Browse files
committed
Grammar and typo fixes
1 parent 6262b52 commit f35be6f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

sql2022workshop/05_DataVirt.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ A new capability in SQL Server 2022 is to create an external table based on a qu
5656

5757
### New native file format support
5858

59-
SQL Server allows you to create a file format to define the structure of a file in a remote data source. You would use file formats to define the structure of a JSON file since it JSON is not a native supported file format. SQL Server 2022 now recognizes natively file formats **parquet** and **delta tables**.
59+
SQL Server allows you to create a file format to define the structure of a file in a remote data source. You would use file formats to define the structure of a JSON file since JSON is not a native supported file format. SQL Server 2022 now recognizes native file formats **parquet** and **delta tables**.
6060

6161
- **Parquet**
6262

@@ -108,7 +108,7 @@ Follow the instructions in the readme.md file in the **[sql2022workshop\05_DataV
108108

109109
<h2><img style="float: left; margin: 0px 15px 15px 0px;" src="https://github.com/microsoft/sqlworkshops/blob/master/graphics/pencil2.png?raw=true"><b><a name="5-2"> 5.2 Using delta table with S3 compatible object storage</a></b></h2>
110110

111-
In this exercise you will see how delta tables Can be used with external tables for a S3 compatible object storage provider by reviewing the results of T-SQL notebook.
111+
In this exercise you will see how delta tables can be used with external tables for a S3 compatible object storage provider by reviewing the results of T-SQL notebook.
112112

113113

114114
<h2><img style="float: left; margin: 0px 15px 15px 0px;" src="https://github.com/microsoft/sqlworkshops/blob/master/graphics/point1.png?raw=true"><b><a name="activityquerystore"> Exercise: Access delta table with T-SQL using S3 compatible object storage</a></b></h2>

sql2022workshop/05_DataVirt/minio/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ These are exercises to use data virtualization and object storage for S3 with mi
1717

1818
## Setup minio for the exercise
1919

20-
- Download minio.exe for Windows into c:\minio.exe
20+
- Download minio.exe for Windows into c:\minio
2121
- Download the openssl for Windows MSI and run the installer. Use all the defaults.
2222
- Set a system environment variable OPENSSL_CONF=C:\Program Files\OpenSSL-Win64\bin\openssl.cfg and add to the system environment variable PATH c:\Program Files\OpenSSL-Win64\bin
2323
- Generate a private key using the following command from the c:\minio directory.
@@ -30,7 +30,7 @@ These are exercises to use data virtualization and object storage for S3 with mi
3030
`openssl req -new -x509 -nodes -days 730 -key private.key -out public.crt -config openssl.conf`
3131

3232
- Double-click the public.crt file and select Install Certificate. Choose Local Machine, Place all certificates in the following store, Browse, and select Trusted Root Certification Authorities.
33-
- Copy the private.key and public.crt files from c:\minio into `%%USERPROFILE%%\`.minio\certs. (c:\Users`\<username>\`.minio\certs).
33+
- Copy the private.key and public.crt files from c:\minio into `%USERPROFILE%\`.minio\certs. (c:\Users`\<username>\`.minio\certs).
3434

3535
## Steps to use minio for the exercise
3636

sql2022workshop/05_DataVirt/openrowset/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This is an exercise to see the fundamental capability of data virtualization usi
1010

1111
## Exercise: Use OPENROWSET to query parquet files
1212

13-
1. Execute the script **enablepolybase.sql** to enable the Polybase feature for the instance. If you encounter Msg 46923 you need to add the Polybase feature. The Polybase services do not need to running.
13+
1. Execute the script **enablepolybase.sql** to enable the Polybase feature for the instance. If you encounter Msg 46923 you need to add the Polybase feature. The Polybase services do not need to be running.
1414
1. Restart SQL Server even if you installed the Polybase feature as part of setup. You can safely stop the Polybase services. They are not required to be running to use the new REST API connectors.
1515
1. Execute the statements in the script **openrowset.sql** to view data from parquet files and a list a files from a public data set in Azure. If you encounter the following error
1616

sql2022workshop/05_DataVirt/parquet/queryparquet.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@
212212
"source": [
213213
"# Step 4 - External file format\n",
214214
"\n",
215-
"Create an external format file for paruqet to be used for external tables"
215+
"Create an external format file for parquet to be used for external tables"
216216
],
217217
"metadata": {
218218
"language": "sql",

0 commit comments

Comments
 (0)