Skip to content

Commit 623119f

Browse files
committed
Update content
1 parent 782f24e commit 623119f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

articles/data-factory/connector-azure-sql-database.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -766,7 +766,7 @@ Settings specific to Azure SQL Database are available in the **Source Options**
766766
> EXECUTE sp_executesql @query;
767767
> END
768768
>```
769-
>Then use the **Stored procedure** mode in the source transformation of the mapping data flow and set the `@query` as `with CTE as (select 'test' as a) select * from CTE`. Then you can use CTEs as expected.
769+
>Then use the **Stored procedure** mode in the source transformation of the mapping data flow and set the `@query` like example `with CTE as (select 'test' as a) select * from CTE`. Then you can use CTEs as expected.
770770

771771
**Stored procedure**: Choose this option if you wish to generate a projection and source data from a stored procedure that is executed from your source database. You can type in the schema, procedure name, and parameters, or click on Refresh to ask the service to discover the schemas and procedure names. Then you can click on Import to import all procedure parameters using the form ``@paraName``.
772772

articles/data-factory/connector-azure-sql-managed-instance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@ The below table lists the properties supported by Azure SQL Managed Instance sou
775775
> EXECUTE sp_executesql @query;
776776
> END
777777
>```
778-
>Then use the **Stored procedure** mode in the source transformation of the mapping data flow and set the `@query` as `with CTE as (select 'test' as a) select * from CTE`. Then you can use CTEs as expected.
778+
>Then use the **Stored procedure** mode in the source transformation of the mapping data flow and set the `@query` like example `with CTE as (select 'test' as a) select * from CTE`. Then you can use CTEs as expected.
779779

780780
#### Azure SQL Managed Instance source script example
781781

articles/data-factory/connector-sql-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ The below table lists the properties supported by SQL Server source. You can edi
650650
> EXECUTE sp_executesql @query;
651651
> END
652652
>```
653-
>Then use the **Stored procedure** mode in the source transformation of the mapping data flow and set the `@query` as `with CTE as (select 'test' as a) select * from CTE`. Then you can use CTEs as expected.
653+
>Then use the **Stored procedure** mode in the source transformation of the mapping data flow and set the `@query` like `with CTE as (select 'test' as a) select * from CTE`. Then you can use CTEs as expected.
654654

655655
#### SQL Server source script example
656656

0 commit comments

Comments
 (0)