Hi @Sergio Giudicelli,
Welcome to the Microsoft Q&A and thank you for posting your questions here.
This forum is supporting English only, please post your question in English, so that we can avoid misunderstanding. Apologized for any inconvenience.
I understand that you're facing issues with a specific table in your SQL Server database after migrating to Azure. Here are a few steps you can take to troubleshoot and potentially resolve this issue:
- Ensure that the table in question has appropriate indexes. Given that it has many columns, a lack of proper indexing can significantly slow down access times.
- Analyze the queries being run on this table. Use SQL Server’s Query Store or Azure SQL Database’s Query Performance Insight to identify any slow-running queries and optimize them.
- Since the issue is specific to your local infrastructure, check for any network latency or bandwidth issues between your local network and Azure. Tools like Azure Network Watcher can help diagnose network performance issues.
- Review the database configuration settings. Ensure that the database is configured optimally for your workload. This includes checking the compatibility level, max degree of parallelism, and other performance-related settings.
- The connection string parameters can also impact performance. For example, setting MultiSubnetFailover=True can help improve failover times in multi-subnet environments. Ensure that the parameters are set correctly for your specific scenario.
- Verify that the Azure SQL Database tier you are using is appropriate for your workload. Sometimes, upgrading to a higher tier can resolve performance issues.
- Monitor the resource utilization (CPU, memory, I/O) of your Azure SQL Database. High resource utilization can lead to performance bottlenecks. Azure SQL Database provides built-in monitoring tools to help with this.
- Regularly perform database maintenance tasks such as updating statistics, rebuilding indexes, and checking for fragmentation. These tasks can help improve query performance.
Hope this helps. Do let us know if you any further queries.
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful. And, if you have any further query do let us know.