Hello Niccolo,
Welcome to the community! It is not possible to directly change the storage tier from Premium to Standard. To move from a premium storage account to a standard storage account in Azure, you need to follow a few steps since direct conversion is not supported. Here’s a detailed process:
- Create a New Storage Account: First, you need to create a new storage account of the desired type (Standard). This can be done through the Azure portal, Azure CLI, or PowerShell.
- Copy Data to the New Account: Use tools like AzCopy, Azure Storage Explorer, or Azure Data Factory to copy data from the premium storage account to the new standard storage account. AzCopy is a command-line utility designed for copying data to and from Azure Storage, and it can handle large data transfers efficiently.
- Update References: Once the data is copied, update any references in your applications or services to point to the new standard storage account. This includes updating connection strings and any configurations that reference the old storage account.
- Verify Data Integrity: Ensure that all data has been copied correctly and that your applications are functioning as expected with the new storage account. Perform thorough testing to verify data integrity and application performance.
- Delete the Old Storage Account: After confirming that everything is working correctly with the new standard storage account, you can delete the old premium storage account to avoid incurring additional costs.
Additional reference material:
Copy or move data to Azure Storage by using AzCopy v10 | Microsoft Learn
Using Storage Explorer with Azure Files | Microsoft Learn
Migrate data from data lake and data warehouse to Azure - Azure Data Factory | Microsoft Learn