From f29d09fb09b32111728f1c6ffc4a9ccd4cc0213d Mon Sep 17 00:00:00 2001 From: Hiroshi Yoshioka <40815708+hyoshioka0128@users.noreply.github.com> Date: Fri, 14 Jan 2022 12:15:14 +0900 Subject: [PATCH] =?UTF-8?q?Typo=20"Azure=20blob=20storage"=E2=86=92"Azure?= =?UTF-8?q?=20Blob=20Storage"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/microsoft/sql-server-samples/blob/master/samples/databases/contoso-data-warehouse/load-contoso-data-warehouse-to-sql-data-warehouse.sql #PingMSFTDocs --- ...ad-contoso-data-warehouse-to-sql-data-warehouse.sql | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/samples/databases/contoso-data-warehouse/load-contoso-data-warehouse-to-sql-data-warehouse.sql b/samples/databases/contoso-data-warehouse/load-contoso-data-warehouse-to-sql-data-warehouse.sql index 2547433b..b9125ecf 100644 --- a/samples/databases/contoso-data-warehouse/load-contoso-data-warehouse-to-sql-data-warehouse.sql +++ b/samples/databases/contoso-data-warehouse/load-contoso-data-warehouse-to-sql-data-warehouse.sql @@ -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.