Actionable Data Analytics
Join Our Email List for Data News Sent to Your Inbox

Azure Synapse Analytics Queries #5 Product Version

Did you know that you could be running two different versions of Azure Synapse Analytics Dedicated SQL Pools in your environments? In this post, I’ll show you how you can find the product version of your Azure Synapse Analytics Dedicated SQL Pool. 

More often than not, Microsoft releases improvements on their services. This includes Azure Synapse Analytics Dedicated SQL Pools.  

These improvements release new features as soon as they are available, fix bugs, update security and more. 

Because Azure Synapse Analytics is a managed service (Platform-as-a-Service / Database-as-a-Service), you have little control over when these releases are going to take place.

You can configure SQL Maintenance Windows to give MS a time window to apply changes. However, some changes will take place outside the time window. 

Finding the Product Version of your Azure Synapse Analytics Dedicated SQL Pool

First, to learn the product version of your Azure Synapse Analytics Dedicated SQL Pool, execute the following query: 

				
					-- Use this query to verify your product version and compare with other environments
SELECT  
[Database name] = db_name(),
[Version] = @@Version, 
[Engine] =  SERVERPROPERTY('EngineEdition'), -- 6 Is Synapse Analytics
[Product] =  SERVERPROPERTY('ProductVersion')  
				
			

Finding the Product Version of your Azure Synapse Analytics Dedicated SQL Pool

What to do if my product versions are different? 

In some cases, pausing and resuming the Dedicated SQL Pool will help pick up the latest changes in the service.  

You can also track the release changes at https://docs.microsoft.com/en-us/azure/synapse-analytics/sql-data-warehouse/release-notes 

WHAT’S NEXT?      

In upcoming blog posts, we’ll continue to explore some of the features within Azure Services.       

Please follow Tech Talk Corner on Twitter for blog updates, virtual presentations, and more!           

As always, please leave any comments or questions below.       

Check out these other blog posts

Microsoft Fabric SQL Databases

Microsoft Fabric SQL Databases

Learn about Microsoft Fabric SQL Databases, a highly transactional database offering leveraging the Azure SQL Database engine. Discover their features, benefits, use cases, and step-by-step instructions to enable and use SQL Databases in Microsoft Fabric.

Read More »

Preparing for 2024: Top 2 Strategic Focus Areas for Q4 2023

Are you ready to kickstart 2024? As Q4 2023 approaches and companies enter a code freeze, it’s crucial to focus on strategic priorities. Explore why maximising ROI in tech investments and leveraging Large Language Models can be game-changers for your business. Learn actionable insights for adopting these key focus areas and staying competitive.

Read More »
comment [ 0 ]
share
No tags 0

No Comments Yet.

Do you want to leave a comment?

Your email address will not be published. Required fields are marked *

For security, use of Google's reCAPTCHA service is required which is subject to the Google Privacy Policy and Terms of Use.

I agree to these terms.