Skip to content

Commit ff5c189

Browse files
authored
Merge pull request #196617 from kalyankadiyala-Microsoft/main
Fixed non-blocking review comments from PR - #196058
2 parents 633192b + 5d21c10 commit ff5c189

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/synapse-analytics/spark/synapse-spark-sql-pool-import-export.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Azure Active Directory based authentication is an integrated authentication appr
8181

8282
#### Basic authentication
8383

84-
A basic authentication approach requires user to configure `username` and `password` options. Refer to the section - [Configuration Options](#configuration-options) to learn about relevant configuration parameters for reading from and writing to tables in Azure Synapse Dedicated SQL Pool.
84+
A basic authentication approach requires user to configure `username` and `password` options. Refer to the section - [Configuration options](#configuration-options) to learn about relevant configuration parameters for reading from and writing to tables in Azure Synapse Dedicated SQL Pool.
8585

8686
### Authorization
8787

@@ -171,7 +171,7 @@ Following is the list of configuration options based on usage scenario:
171171
* `Constants.DATA_SOURCE` is a required configuration option.
172172
* The connector uses the storage path set on the data source's location parameter in combination with the `location` argument to the `synapsesql` method and derives the absolute path to persist external table data.
173173
* If the `location` argument to `synapsesql` method isn't specified, then the connector will derive the location value as `<base_path>/dbName/schemaName/tableName`.
174-
* **Write using Basic Authentication**
174+
* **Write using basic authentication**
175175
* Azure Synapse Dedicated SQL End Point
176176
* `Constants.SERVER` - - Synapse Dedicated SQL Pool End Point (Server FQDN).
177177
* `Constants.USER` - SQL User Name.
@@ -207,7 +207,7 @@ val dfToReadFromTable:DataFrame = spark.read.
207207
//If `Constants.SERVER` is not provided, the `<database_name>` from the three-part table name argument
208208
//to `synapsesql` method is used to infer the Synapse Dedicated SQL End Point.
209209
option(Constants.SERVER, "<sql-server-name>.sql.azuresynapse.net").
210-
//Defaults to storage path defined in the runtime configurations (See section on Configuration Options above).
210+
//Defaults to storage path defined in the runtime configurations
211211
option(Constants.TEMP_FOLDER, "abfss://<container_name>@<storage_account_name>.dfs.core.windows.net/<some_base_path_for_temporary_staging_folders>").
212212
//Three-part table name from where data will be read.
213213
synapsesql("<database_name>.<schema_name>.<table_name>").
@@ -340,7 +340,7 @@ readDF.
340340
if(errorDuringWrite.isDefined) throw errorDuringWrite.get
341341
```
342342
343-
#### Write using Basic Authentication
343+
#### Write using basic authentication
344344
345345
Following code snippet replaces the write definition described in the [Write using Azure AD based authentication](#write-using-azure-ad-based-authentication) section, to submit write request using SQL basic authentication approach:
346346

0 commit comments

Comments
 (0)