Hi Peter,
Thank you for reaching on Microsoft Q&A!
Can you please check the following checks.
- Role Permissions: Make sure that the user you are using has the necessary permissions. Only members of the
azure_pg_adminrole can create extensions. You can check if your user is a member of this role with the following query:SELECT * FROM pg_roles WHERE rolname = 'azure_pg_admin'; - Allowlist the Extension: Ensure that the
azure_storageextension (or any other extension you're trying to create) is allowlisted for your instance. You can check the allowlist with:SHOW azure.extensions; - Use CREATE EXTENSION Command: If your user is a member of
azure_pg_adminand the extension is allowlisted, you can try using the command again:
If you still get an error, consider using:CREATE EXTENSION azure_storage;SELECT create_extension('azure_storage'); - Database Context: Make sure you are connected to the correct database context that you want to modify when running these commands.
If you still getting the same issue could you provide us the requested details over Private messaging, these details will help us to investiguate further on this.
Thanks!
Kalyani