AzureAzure SQL Database Performance Tuning April 15, 20168893 views0Share By IG ShareAzure SQL Database Performance Tuning is an important topic even if the database does not need a dedicated DBA to manage and maintain. There are several automatic optimization options provided by Microsoft which you can leverage to know more about your Database performance. Read along to know more:Note: If you buy something from our links, we might earn a commission. See our disclosure statement.Azure SQL Database Performance TuningBefore discussing Azure SQL Server Performance Tuning, you need to understand the Azure SQL Architecture and how it is deployed. One might decide to go for Azure SQL Database because of the following reasons:Save Time and CostIf you want to avoid purchasing and installing hardware yourself. No Hardware and software installations need to be done. Install and deploy SQL Databases on the fly.Azure SQL Database is a “Database as a Service” offering and includes in-built automatic management features such as automatic HA (High Availability) and built-in backup management.Built-In Performance insights and index recommendation.You need to manage Index Fragmentation by yourself. Use the Azure runbook script to automate this job. See more here.Microsoft currently offers you the following:Up to 99.99% SLABy default, Databases are replicated on three servers within the same location.Databases can be Geo-replicated to other data centers. Azure implements Always On Availability Groups under the hood to achieve this.Azure manages the underlying infrastructure and you do not need to manage these resources.Azure SQL is a multi-tenant deployment and resources are shared across customers.Since you do not have access to the Server hosting the Databases, you have limited options. So you will need to work with the options that you have.For example:Use Connection PoolingClose Unused connectionsEnsure good network connectivity and less network latency.Ensure that you tune your queries and avoid Table Scans. Create appropriate Index’s to force an “Index Seek”Filter your results appropriately.The performance of individual Azure SQL Databases is based on the service tier that you go for. This gives you guaranteed predictable performance. The throughput guaranteed for your database depends upon their respective service tiers, i.e. Basic, Standard or Premium. This guaranteed performance is measured in DTU’s for Azure SQL Database. More DTU’s gives you more transactions per second.Use http://dtucalculator.azurewebsites.net to estimate the number of DTU’s that you need. Source: https://azure.microsoft.com/en-in/documentation/articles/sql-database-service-tiers/DTU is beyond the scope of this post, please visit here for official documentation.See my earlier post on Performance Tuning for SQL Server on Azure Virtual MachinesTools to Monitor SQL Azure Performance:Extended EventsThis feature was introduced with SQL Server 2008. On Azure SQL this was made available in 2015 and only available on V12 Databases. This allows you to get more internal information of your SQL Server. Much of the Extended Events for On-Premise SQL Server is similar to Azure SQL Database. See the official Documentation here. 2. Query StoreThis is also available on V12 Databases. The Query Store gives you performance insights on historical telemetry information collected by the Azure SQL service. Using this service you can:Review the list of top resource-consuming queries.Ability to select an individual query to view its details.3. Dynamic Management Views or DMV’sThis allows you to see “point in time” information for your SQL Server queries. You need to set the Database context to your “Master Database” and then query the system tables for more database insights.See my earlier post on Performance Tuning using Dynamic Management Views.Here are some examples:Max concurrent requests SELECT COUNT(*) AS [Concurrent_Requests] FROM sys.dm_exec_requests RMax Concurrent requests for a specific DB SELECT COUNT(*) AS [Concurrent_Requests] FROM sys.dm_exec_requests R INNER JOIN sys.databases D ON D.database_id = R.database_id AND D.name = 'YourDBName'Max Sessions SELECT COUNT(*) AS [Sessions] FROM sys.dm_exec_connections C INNER JOIN sys.dm_exec_sessions S ON (S.session_id = C.session_id) INNER JOIN sys.databases D ON (D.database_id = S.database_id) WHERE D.name = 'MyDatabase'Missing Index's SELECT CONVERT (varchar, getdate(), 126) AS runtime, mig.index_group_handle, mid.index_handle, CONVERT (decimal (28,1), migs.avg_total_user_cost * migs.avg_user_impact * (migs.user_seeks + migs.user_scans)) AS improvement_measure, 'CREATE INDEX missing_index_' + CONVERT (varchar, mig.index_group_handle) + '_' + CONVERT (varchar, mid.index_handle) + ' ON ' + mid.statement + ' (' + ISNULL (mid.equality_columns,'') + CASE WHEN mid.equality_columns IS NOT NULL AND mid.inequality_columns IS NOT NULL THEN ',' ELSE '' END + ISNULL (mid.inequality_columns, '') + ')' + ISNULL (' INCLUDE (' + mid.included_columns + ')', '') AS create_index_statement, migs.*, mid.database_id, mid.[object_id] FROM sys.dm_db_missing_index_groups mig INNER JOIN sys.dm_db_missing_index_group_stats migs ON migs.group_handle = mig.index_group_handle INNER JOIN sys.dm_db_missing_index_details mid ON mig.index_handle = mid.index_handle WHERE CONVERT (decimal (28,1), migs.avg_total_user_cost * migs.avg_user_impact * (migs.user_seeks + migs.user_scans)) > 10 ORDER BY migs.avg_total_user_cost * migs.avg_user_impact * (migs.user_seeks + migs.user_scans) DESCMonitor I/O CPU or Memory Performance using sys.dm_db_resource_stats SELECT AVG(avg_cpu_percent) AS 'Average CPU Utilization In Percent', MAX(avg_cpu_percent) AS 'Maximum CPU Utilization In Percent', AVG(avg_data_io_percent) AS 'Average Data IO In Percent', MAX(avg_data_io_percent) AS 'Maximum Data IO In Percent', AVG(avg_log_write_percent) AS 'Average Log Write Utilization In Percent', MAX(avg_log_write_percent) AS 'Maximum Log Write Utilization In Percent', AVG(avg_memory_usage_percent) AS 'Average Memory Usage In Percent', MAX(avg_memory_usage_percent) AS 'Maximum Memory Usage In Percent' FROM sys.dm_db_resource_stats;This telemetry information is recorded every 15 seconds and are maintained for one hour4. Index RecommendationThe Index recommendations that are offered in Azure SQL are recommended based on the existing telemetry collected by Azure SQL Database service. These computations run externally to Azure SQL DB and do not use any of the Azure SQL DB resources or create additional transactions. Implementing the index’s based on the recommendation, however, can have some impact like any other databases.Here are the advantages and its impact on SQL Performance:Unlike On-Premises, SQL Azure is a shared multi-tenant service which if not tuned properly can have a greater impact in comparison to on-premises SQL deployments. Creating Index’s is crucial for this and one should follow Index recommendation thoroughly.You can collect the baseline performance data for comparisons before and after creating the indexes.The best feature of this is, in case this creates a negative impact, the index creation is automatically rolled back.Resources Available Online:Extended Events in Azure SQL: https://azure.microsoft.com/en-in/documentation/articles/sql-database-xevent-db-diff-from-svr/Query Store: https://azure.microsoft.com/en-us/documentation/articles/sql-database-query-performance/Azure SQL Database performance guidance for single databases: https://azure.microsoft.com/en-in/documentation/articles/sql-database-performance-guidance/SQL Database Index Advisor https://azure.microsoft.com/en-in/documentation/articles/sql-database-index-advisor/We hope that this post was helpful to get you started with Azure SQL Database Performance Tuning. If you have any suggestions or comments, please feel free to use the comment section below. Affiliate Disclosure: Faceofit.com is a participant in the Amazon Services LLC Associates Program. As an Amazon Associate we earn from qualifying purchases. Share What's your reaction? Excited 0 Happy 0 In Love 0 Not Sure 0 Silly 0
AzureMove & Load Data to Azure SQL DataWarehouse using Data Platform StudioThere are multiple ways to populate data into Azure SQL DataWarehouse PAAS (Platform as a ...
SQLHow to Upgrade to SQL Server 2016 from Earlier and Older VersionsHow to Upgrade to SQL Server 2016 from Earlier and Older Versions SQL Server 2016 ...
Enterprise TechAuditing Features in SQL Server 2016 and Azure SQL DatabaseAuditing Features in SQL Server 2016 and Azure SQL Database SQL Server auditing features allow ...
Enterprise TechHow to Replicate your Data to an Azure VM with SQL StandardHow to Replicate your Data to an Azure VM with SQL Standard SQL Server Standard ...