You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Visual Studio object explorer is missing AAD users | This is a known issue. As a workaround, view the users in [sys.database_principals](https://docs.microsoft.com/sql/relational-databases/system-catalog-views/sys-database-principals-transact-sql?view=sql-server-ver15). See [Authentication to Azure Synapse](sql-data-warehouse-authentication.md) to learn more about using Azure Active Directory with SQL Analytics. |
32
-
| Manual scripting, using the scripting wizard, or connecting via SSMS is slow, not responding, or producing errors | Ensure that users have been created in the master database. In scripting options, also make sure that the engine edition is set as “Microsoft Azure SQL Data Warehouse Edition” and engine type is “Microsoft Azure SQL Database”. |
32
+
| Manual scripting, using the scripting wizard, or connecting via SSMS is slow, not responding, or producing errors | Ensure that users have been created in the master database. In scripting options, also make sure that the engine edition is set as "Microsoft Azure SQL Data Warehouse Edition" and engine type is "Microsoft Azure SQL Database". |
33
33
| Generate scripts fails in SSMS | Generating a script for SQL Analytics fails if the option "Generate script for dependent objects" option is set to "True." As a workaround, users must manually go to **Tools -> Options ->SQL Server Object Explorer -> Generate script for dependent options and set to false**|
| Query performance troubleshooting | If you are trying to troubleshoot a particular query, start with [Learning how to monitor your queries](../sql-data-warehouse/sql-data-warehouse-manage-monitor.md#monitor-query-execution). |
39
-
| TempDB space issues |[Monitor TempDB](../sql-data-warehouse/sql-data-warehouse-manage-monitor.md#monitor-tempdb) space usage. Common causes for running out of TempDB space are:<br>- Not enough resources allocated to the query causing data to spill to TempDB. See [Workload management](resource-classes-for-workload-management.md) <br>- Statistics are missing or out of date causing excessive data movement. See [Maintaining table statistics](sql-data-warehouse-tables-statistics.md) for details on how to create statistics<br>- TempDB space is allocated per service level. [Scaling your SQL pool](../sql-data-warehouse/sql-data-warehouse-manage-compute-overview.md#scaling-compute) to a higher DWU setting allocates more TempDB space.|
39
+
| TempDB space issues |[Monitor TempDB](../sql-data-warehouse/sql-data-warehouse-manage-monitor.md#monitor-tempdb) space usage. Common causes for running out of TempDB space are:<br>- Not enough resources allocated to the query causing data to spill to TempDB. See [Workload management](resource-classes-for-workload-management.md) <br>- Statistics are missing or out of date causing excessive data movement. See [Maintaining table statistics](sql-data-warehouse-tables-statistics.md) for details on how to create statistics<br>- TempDB space is allocated per service level. [Scaling your SQL pool](../synapse-analytics/sql-data-warehouse/sql-data-warehouse-manage-compute-overview.md#scaling-compute) to a higher DWU setting allocates more TempDB space.|
40
40
| Poor query performance and plans often is a result of missing statistics | The most common cause of poor performance is lack of statistics on your tables. See [Maintaining table statistics](sql-data-warehouse-tables-statistics.md) for details on how to create statistics and why they are critical to your performance. |
41
41
| Low concurrency / queries queued | Understanding [Workload management](resource-classes-for-workload-management.md) is important in order to understand how to balance memory allocation with concurrency. |
42
42
| How to implement best practices | The best place to start to learn ways to improve query performance is [SQL Analytics best practices](sql-data-warehouse-best-practices.md) article. |
@@ -57,8 +57,8 @@ This article lists common troubleshooting question.
| Unsupported SQL Database features | See [Unsupported table features](../sql-data-warehouse/sql-data-warehouse-tables-overview.md#unsupported-table-features). |
59
59
| Unsupported SQL Database data types | See [Unsupported data types](../sql-data-warehouse/sql-data-warehouse-tables-data-types.md#identify-unsupported-data-types). |
60
-
| DELETE and UPDATE limitations | See [UPDATE workarounds](../sql-data-warehouse/sql-data-warehouse-develop-ctas.md#ansi-join-replacement-for-update-statements), [DELETE workarounds](../sql-data-warehouse/sql-data-warehouse-develop-ctas.md#ansi-join-replacement-for-delete-statements) and [Using CTAS to work around unsupported UPDATE and DELETE syntax](../synapse-analytics/sql-data-warehouse/sql-data-warehouse-develop-ctas.md). |
61
-
| MERGE statement is not supported | See [MERGE workarounds](../sql-data-warehouse/sql-data-warehouse-develop-ctas.md#replace-merge-statements). |
60
+
| DELETE and UPDATE limitations | See [UPDATE workarounds](../synapse-analytics/sql-data-warehouse/sql-data-warehouse-develop-ctas.md#ansi-join-replacement-for-update-statements), [DELETE workarounds](../synapse-analytics/sql-data-warehouse/sql-data-warehouse-develop-ctas.md#ansi-join-replacement-for-delete-statements) and [Using CTAS to work around unsupported UPDATE and DELETE syntax](../synapse-analytics/sql-data-warehouse/sql-data-warehouse-develop-ctas.md). |
61
+
| MERGE statement is not supported | See [MERGE workarounds](../synapse-analytics/sql-data-warehouse/sql-data-warehouse-develop-ctas.md#replace-merge-statements). |
62
62
| Stored procedure limitations | See [Stored procedure limitations](../sql-data-warehouse/sql-data-warehouse-develop-stored-procedures.md#limitations) to understand some of the limitations of stored procedures. |
63
63
| UDFs do not support SELECT statements | This is a current limitation of our UDFs. See [CREATE FUNCTION](https://docs.microsoft.com/sql/t-sql/statements/create-function-sql-data-warehouse?view=aps-pdw-2016-au7) for the syntax we support. |
Copy file name to clipboardExpand all lines: articles/synapse-analytics/sql-data-warehouse/sql-data-warehouse-install-visual-studio.md
+2-8Lines changed: 2 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Install Visual Studio 2019
3
3
description: Install Visual Studio and SQL Server Development Tools (SSDT) for SQL Analytics
4
4
services: sql-data-warehouse
5
-
ms.custom: vs-azure
5
+
ms.custom: vs-azure, azure-synapse
6
6
ms.workload: azure-vs
7
7
author: kevinvngo
8
8
manager: craigg
@@ -12,7 +12,6 @@ ms.subservice: development
12
12
ms.date: 02/04/2020
13
13
ms.author: kevin
14
14
ms.reviewer: igorstan
15
-
ms.custom: azure-synapse
16
15
---
17
16
18
17
# Getting started with Visual Studio 2019
@@ -45,15 +44,10 @@ There are times when feature releases for SQL Analytics may not include support
45
44
46
45
## Next steps
47
46
48
-
Now that you have the latest version of SSDT, you're ready to [connect][connect] to your SQL pool.
47
+
Now that you have the latest version of SSDT, you're ready to [connect](../../sql-data-warehouse/sql-data-warehouse-query-visual-studio.md) to your SQL pool.
Copy file name to clipboardExpand all lines: articles/synapse-analytics/sql-data-warehouse/sql-data-warehouse-manage-compute-overview.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -119,7 +119,7 @@ To check the SQL pool state, see the [PowerShell](quickstart-scale-compute-power
119
119
120
120
## Permissions
121
121
122
-
Scaling the SQL pool requires the permissions described in [ALTER DATABASE](/sql/t-sql/statements/alter-database-azure-sql-data-warehouse). Pause and Resume require the [SQL DB Contributor](../role-based-access-control/built-in-roles.md#sql-db-contributor) permission, specifically Microsoft.Sql/servers/databases/action.
122
+
Scaling the SQL pool requires the permissions described in [ALTER DATABASE](/sql/t-sql/statements/alter-database-azure-sql-data-warehouse). Pause and Resume require the [SQL DB Contributor](../../role-based-access-control/built-in-roles.md#sql-db-contributor) permission, specifically Microsoft.Sql/servers/databases/action.
0 commit comments