Merge pull request #983 from hyoshioka0128/patch-1

Typo "Azure blob storage"→"Azure Blob Storage"
This commit is contained in:
Umachandar Jayachandran
2022-03-02 22:15:27 -08:00
committed by GitHub
@@ -1,5 +1,5 @@
-- Use PolyBase to load public data from Azure blob storage into the Contoso Retail Data Warehouse schema.
-- Use PolyBase to load public data from Azure Blob Storage into the Contoso Retail Data Warehouse schema.
--
-- This script:
--
@@ -18,7 +18,7 @@
-- Create an external data source
-- TYPE: HADOOP - PolyBase uses Hadoop APIs to access data in Azure blob storage.
-- TYPE: HADOOP - PolyBase uses Hadoop APIs to access data in Azure Blob Storage.
-- LOCATION: Provide Azure storage account name and blob container name.
-- CREDENTIAL: Provide the credential created in the previous step.
@@ -30,7 +30,7 @@ WITH
);
GO
-- The data is stored in text files in Azure blob storage, and each field is separated with a delimiter.
-- The data is stored in text files in Azure Blob Storage, and each field is separated with a delimiter.
-- Run this [CREATE EXTERNAL FILE FORMAT][] command to specify the format of the data in the text files.
-- he Contoso data is uncompressed and pipe delimited.
@@ -52,7 +52,7 @@ GO
-- Now let's create the external tables. All we are doing here is defining column names and data types,
-- and binding them to the location and format of the Azure blob storage files. The location is the folder
-- and binding them to the location and format of the Azure Blob Storage files. The location is the folder
-- under the root directory of the Azure Storage Blob.
--DimAccount
@@ -779,7 +779,7 @@ WITH
-- Load the data with CTAS
--
-- The easiest and most efficient way to load data from Azure blob storage is to usu
-- The easiest and most efficient way to load data from Azure Blob Storage is to usu
-- Create Table As Select (CTAS). Loading with CTAS leverages the strongly typed
-- external tables you have just created.