You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following is the list of errors that the Azure Storage extension can return, and the reasons why, or the circumstances in which, they can be seen.
20
+
Following is the list of errors that the Azure Storage extension can return, and the reasons why, or the circumstances in which, they can be raised.
21
21
22
22
### ERROR: azure_storage: Permission is not sufficient to perform requested operation
23
23
24
-
When executing any of the functions that interact with Azure Storage (`azure_storage.blob_list`, `azure_storage.blob_get` or `azure_storage.blob_put`) and the System Assigned Managed Identity isn't granted the adequate data plane roles or permissions (typically a minimum of **Storage Blob Data Contributor** for azure_storage.blob_put, and a minimum of **Storage Blob Data Reader** for the other two functions).
24
+
Is raised when executing any of the functions that interact with Azure Storage (`azure_storage.blob_list`, `azure_storage.blob_get` or `azure_storage.blob_put`) and the System Assigned Managed Identity isn't granted the adequate data plane roles or permissions (typically a minimum of **Storage Blob Data Contributor** for azure_storage.blob_put, and a minimum of **Storage Blob Data Reader** for the other two functions).
25
25
26
-
It may also be the case that you have already granted the minimum required permissions but they aren't yet in effect. It can take a few minutes until those permissions get propagated.
26
+
It may be the case that you already granted the minimum required permissions, but they aren't yet in effect. It can take a few minutes until those permissions propagate.
When executing any of the functions that interact with Azure Storage (`azure_storage.blob_list`, `azure_storage.blob_get` or `azure_storage.blob_put`) and the credentials with which you want the extension to authenticate with the storage account aren't registered using `azure_storage.account_add`.
30
+
I raised when executing any of the functions that interact with Azure Storage (`azure_storage.blob_list`, `azure_storage.blob_get` or `azure_storage.blob_put`) and the credentials with which you want the extension to authenticate with the storage account aren't registered using `azure_storage.account_add`.
31
31
32
32
### ERROR: azure_storage: internal error while connecting
33
33
34
-
When the instance of flexible server can't reach the target storage account. That could happen in the following cases:
34
+
Is raised when the instance of flexible server can't reach the target storage account. This situation can happen in the following cases:
35
35
- The storage account doesn't exist.
36
36
- Networking configuration doesn't allow traffic originated from the instance of flexible server to reach the storage account. For example, when the instance of flexible server is deployed with public access networking, and the storage account is only accessible via private endpoints.
37
37
38
-
When the System Assigned Managed Identity isn't enabled in the instance of flexible server.
38
+
It can also be raised when the System Assigned Managed Identity isn't enabled in the instance of flexible server.
39
39
40
-
### ERROR: azure_storage: storage credentials invalid format
40
+
### ERROR: azure_storage: current user <user_or_role> isn't allowed to use storage account <account_name>
41
41
42
-
When the System Assigned Managed Identity is enabled on the instance of flexible server, but the server hasn't been restarted after enabling it.
42
+
Is raised when executing any of the functions that interact with Azure Storage (`azure_storage.blob_list`, `azure_storage.blob_get` or `azure_storage.blob_put`) with a user or role that isn't member of `azure_storage_admin` and isn't granted permissions, using `azure_storage.account_user_add`, to use the referred storage account.
43
43
44
-
### ERROR: azure_storage: current user <user_or_role> isn't allowed to use storage account <account_name>
44
+
### ERROR: azure_storage: Query is not supported while copying data to blob storage
45
45
46
-
When executing any of the functions that interact with Azure Storage (`azure_storage.blob_list`, `azure_storage.blob_get` or `azure_storage.blob_put`) with a user or role that isn't member of `azure_storage_admin` and isn't granted permissions, using `azure_storage.account_user_add`, to use the referred storage account.
46
+
Is raised when executing a COPY TO statement for which the source is a query. Azure Storage extension doesn't support this syntax. It only supports the syntax on which the source of the COPY TO be a relation. As a workaround, you can implement a view with the query as its definition, and rewrite the COPY TO statement to be sourced on the view.
0 commit comments