Skip to content

Commit d3d8c06

Browse files
committed
minor fixes
1 parent a5e1326 commit d3d8c06

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

articles/synapse-analytics/sql-data-warehouse/sql-data-warehouse-connect-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.custom: seo-lt-2019
1717
Get connected to SQL pool.
1818

1919
## Find your server name
20-
The server name in the following example is samplesvr.database.windows.net. To find the fully qualified server name:
20+
The server name in the following example is sqlpoolservername.database.windows.net. To find the fully qualified server name:
2121

2222
1. Go to the [Azure portal](https://portal.azure.com).
2323
2. Click on **Azure Synapse Analytics**.

articles/synapse-analytics/sql-data-warehouse/sql-data-warehouse-develop-dynamic-sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ ms.custom: seo-lt-2019
1414
---
1515

1616
# Dynamic SQL in Synapse SQL pool
17-
Tips for development solutions using dynamic SQL in SQL pool.
17+
Included in this article are tips for development solutions using dynamic SQL in SQL pool.
1818

1919
## Dynamic SQL Example
2020

21-
When developing application code for SQL pool, you may need to use Dynamic SQL to help deliver flexible, generic, and modular solutions. SQL pool doesn't support blob data types at this time.
21+
When developing application code for SQL pool, you may need to use dynamic SQL to help deliver flexible, generic, and modular solutions. SQL pool doesn't support blob data types at this time.
2222

2323
Not supporting blob data types might limit the size of your strings since blob data types include both varchar(max) and nvarchar(max) types.
2424

articles/synapse-analytics/sql-data-warehouse/sql-data-warehouse-develop-label.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Querying for labels provides a mechanism for locating problem queries and helpin
3333

3434
A good naming convention really helps. For example, starting the label with PROJECT, PROCEDURE, STATEMENT, or COMMENT uniquely identifies the query among all the code in source control.
3535

36-
The following query uses a dynamic management view to search by label.
36+
The following query uses a dynamic management view to search by label:
3737

3838
```sql
3939
SELECT *

articles/synapse-analytics/sql-data-warehouse/sql-data-warehouse-develop-stored-procedures.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@ Stored procedures are a great way for encapsulating your SQL code, which is stor
2828

2929
SQL pool provides a simplified and streamlined stored procedure implementation. The biggest difference compared to SQL Server is that the stored procedure isn't pre-compiled code.
3030

31-
In general, for data warehouses, the compilation time is small in comparison to the time it takes to run queries against large data volumes. It's more important to ensure the stored procedure code is correctly optimized for large queries. The goal is to save hours, minutes, and seconds, not milliseconds. So, it's helpful to think of stored procedures as containers for SQL logic.
31+
In general, for data warehouses, the compilation time is small in comparison to the time it takes to run queries against large data volumes. It's more important to ensure the stored procedure code is correctly optimized for large queries.
32+
33+
> [!TIP]
34+
> The goal is to save hours, minutes, and seconds, not milliseconds. So, it's helpful to think of stored procedures as containers for SQL logic.
3235
3336
When SQL pool executes your stored procedure, the SQL statements are parsed, translated, and optimized at run time. During this process, each statement is converted into distributed queries. The SQL code that is executed against the data is different than the query submitted.
3437

0 commit comments

Comments
 (0)