Top "Azure-table-storage" questions

Azure Table storage is a cloud-based NoSQL service which is ideal for large amounts of structured, non-relational data.

Getting started with Azure storage: Blobs vs Tables vs SQL Azure

It's quite a topic, blobs vs tables vs SQL, and despite all I read so far I still can't find …

azure azure-sql-database azure-storage-blobs azure-table-storage
What is the azure table storage query equivalent of T-sql's LIKE command?

I'm querying Azure table storage using the Azure Storage Explorer. I want to find all messages that contain the given …

azure azure-sql-database azure-storage azure-table-storage
Timestamp query in Azure

I am really stuck in my query filter on Azure table storage. May I know how to query with timestamp …

c# azure-storage azure-table-storage
TableQuery<T> from Azure TableStorage that filters on PartitionKey

I'm trying to abstract geting all entities from a Table by partitionKey, like so: public List<T> GetEntities&…

c# azure azure-storage azure-table-storage
Delete All Azure Table Records

I have an Azure Storage Table and it has 3k+ records. What is the most efficient way to delete all …

c# azure azure-storage azure-table-storage
Azure Tables: best practices for choosing partition/row keys

What would be best practices for choosing partition/row keys for entities in Azure Tables? The common advice is to …

azure azure-storage azure-table-storage
The correct way to delete and recreate a Windows Azure Storage Table = Error 409 Conflict - Code : TableBeingDeleted

Im really new to Windows Azure development and have a requirement to store some data in a windows azure storage …

c# azure azure-storage azure-table-storage azure-web-roles
Where can I get a list of Unicode chars by class?

I'm new to learning Unicode, and not sure how much I have to learn based on my ASCII background, but …

c# unicode azure azure-table-storage
Count rows within partition in Azure table storage

I've seen various questions around SO about how to get the total row count of an Azure storage table, but …

c# azure azure-table-storage rowcount
insert complex objects to azure table with TableServiceEntity

I was considering adding a whole complex object into a table. Having come from good old fashioned SQL approach I'd …

c# azure entity azure-table-storage