@@ -531,7 +531,7 @@ dfToReadFromQueryAsOption = (spark.read
531
531
# Set user's password to the database
532
532
.option(Constants.PASSWORD , " <user_password>" )
533
533
# Set name of the data source definition that is defined with database scoped credentials.
534
- # https://docs .microsoft.com/sql/t-sql/statements/create-external-data-source-transact-sql?view=sql-server-ver15&tabs=dedicated#h-create-external-data-source-to-access-data-in-azure-storage-using-the-abfs-interface
534
+ # https://learn .microsoft.com/sql/t-sql/statements/create-external-data-source-transact-sql?view=sql-server-ver15&tabs=dedicated#h-create-external-data-source-to-access-data-in-azure-storage-using-the-abfs-interface
535
535
# Data extracted from the SQL query will be staged to the storage path defined on the data source's location setting.
536
536
.option(Constants.DATA_SOURCE , " <data_source_name>" )
537
537
# Query from where data will be read.
@@ -551,7 +551,7 @@ dfToReadFromQueryAsArgument = (spark.read
551
551
# Set user's password to the database
552
552
.option(Constants.PASSWORD , " <user_password>" )
553
553
# Set name of the data source definition that is defined with database scoped credentials.
554
- # https://docs .microsoft.com/sql/t-sql/statements/create-external-data-source-transact-sql?view=sql-server-ver15&tabs=dedicated#h-create-external-data-source-to-access-data-in-azure-storage-using-the-abfs-interface
554
+ # https://learn .microsoft.com/sql/t-sql/statements/create-external-data-source-transact-sql?view=sql-server-ver15&tabs=dedicated#h-create-external-data-source-to-access-data-in-azure-storage-using-the-abfs-interface
555
555
# Data extracted from the SQL query will be staged to the storage path defined on the data source's location setting.
556
556
.option(Constants.DATA_SOURCE , " <data_source_name>" )
557
557
.synapsesql(" select <column_name>, count(*) as counts from <schema_name>.<table_name> group by <column_name>" )
0 commit comments