azure-storage Questions

8

I have two Azure Storage accounts. On one of the Storage account, there are almost 100 containers and some blobs in those containers. I want to transfer all these containers along with the blobs in...
Eraser asked 31/7, 2015 at 10:22

2

Solved

I am using Azure Table Storage as my data sink for my Semantic Logging Application Block. When I call a log to be written by my custom EventSource, I get columns similar to the ff.: EventId Paylo...
Moonier asked 11/5, 2015 at 9:8

4

I have a question about the "content-disposition" blob property of a file in Azure Blog Storage V2. I configured this property of my file howto-201901.pdf as "attachment; filename=howto.pdf" with ...

17

I am having an issue with Azure Storage Emulator. I tried to re-initialise the database and got the error below. This was after installing Visual Studio 2019 Preview but this may just be a co-inc...

3

Solved

The following code returns blob file size of 0: public long GetFileSize(string fileUrl) { var blob = GetBlobContainer().GetBlobReference(fileUrl); return blob == null ? 0 : blob.Properties.Lengt...
Loring asked 26/4, 2012 at 11:15

4

Solved

I have upgraded API project from .NET 5 to .NET 6 successfully and running fine when executed locally (without Docker). I have also updated the version in Dockerfile from "5.0-alpine3.13"...

2

Solved

I understand that Azure Queue is not strict FIFO. And Visual Studio Server Explorer shows only 32 messages. I have some 88 messages in the queue. Is it possible to peek through all the messages in ...
Richart asked 21/10, 2014 at 11:29

15

Solved

What is the most efficient way to get the count on the number of blobs in an Azure Storage container? Right now I can't think of any way other than the code below: CloudBlobContainer container = ...
Kattiekatuscha asked 28/7, 2011 at 15:49

5

Solved

I'm using Azure Blob Storage to store media files and providing access to these files using Shared Access Signatures; everything is working well in this regard. However, I have a client applicatio...
Cusco asked 1/7, 2013 at 16:6

3

There doesn't seem to be a clear and defined way to manage HTTP headers with an Azure static website. I know this feature is still in preview but my team and I are attempting to make this into a pr...
Almatadema asked 20/11, 2018 at 20:9

1

We have multiple backend APIs hosted on Azure web app under same plan. All APIs have same outbound ips, and all these APIs enabled access restriction, these APIs only accessible within the api gate...

3

Solved

To use the Azure Storage (Emulator) Table Service, i need to add a CORS rule for my TypeScript Browser App. I want to add that rule manually using the REST interface (from Postman, not the Browser...

3

Solved

I read about shared access signatures generated with stored access policies for Azure Storage from here. I also read how to create this shared access signature with stored access policies for Azur...
Calends asked 8/3, 2018 at 22:44

4

Solved

I am creating a PowerShell script to perform several steps and one of them involves an Azure Storage Container removal: Remove-AzureStorageContainer .... The next step is dependant of this remov...
Pegues asked 22/4, 2014 at 14:15

2

Solved

I can't find any information on this anywhere and yet the question is simple. Can I wrap storage-related actions in a TransactionScope such that e.g. if there is a rollback, the uploaded file is r...
Cafeteria asked 4/8, 2013 at 17:20

4

Solved

I have an AWS workload that stores csv files in partitions in s3 and then queries the data with SQL queries using Athena, writing the results back to s3. I'm looking for an equivalent behavior in A...

3

Solved

Am stuck with this error The specified container does not exist. let me explain, CloudBlobClient blobStorage = GetBlobStorage("upload"); CloudBlockBlob blob = BlobPropertySetting(blobStor...
Execrative asked 18/9, 2013 at 4:43

2

Solved

I'm pretty sure this is a limitation of the Windows Azure SDK (Using the latest, 1.4), but there has got to be a way around this without using manual REST... The code: CloudBlob blob = container....
Grethel asked 30/7, 2011 at 15:19

6

If I have a class like this: public class Facet : TableServiceEntity { public Guid ParentId { get; set; } public string Name { get; set; } public string Uri{ get; set; } public Facet Parent ...
Submarine asked 16/2, 2010 at 23:39

13

Solved

I'm developing an ASP.Net MVC 4 app and I'm using Azure Blob to store the images that my users are going to upload. I have the following code: var storageAccount = CloudStorageAccount.Parse(Confi...
Hootenanny asked 25/10, 2013 at 21:38

8

Solved

I have an Azure Storage Table and it has 3k+ records. What is the most efficient way to delete all the rows in the table?
Issuable asked 12/10, 2014 at 14:53

1

I have following issue: I want to deploy storage account, only if it does not exist. I check the existence with az cli deployment script: resource checkStorageAccountExistence 'Microsoft.Resources/...
Manstopper asked 28/3, 2023 at 15:39

2

Solved

is it possible to retrieve a Storage Account's Access Key when deploying the Storage Account via a Bicep module? My parent bicep creates a storage account using a module file, and it then needs an ...

10

How can I check how much space I used in each of my azure storage accounts in my subscription resource group wise. I am not able to find a way to check space used in azure storage account through ...
Blondie asked 26/4, 2017 at 9:1

9

Solved

I have a worker role that I use to pull data down from Blob Storage OnStart. Currently I'm testing this by uploading a test.txt file and then downloading it to a local directory. This is working fi...
Francyne asked 14/6, 2012 at 18:27

© 2022 - 2024 — McMap. All rights reserved.