Windows Azure Table storage stores large amounts of structured data. The service is a NoSQL datastore which is ideal for storing structured, non-relational data.

learn more… | top users | synonyms (2)

0
votes
1answer
8 views

The connection name 'DefaultConnection' was not found in the applications configuration or the connection string is empty

I am using Azure Tables, so i don't know how my connection string should be? can anyone please guide for the same. I am using the Account Controller provided by MVC 3 Internet template as is. Then ...
1
vote
1answer
34 views

How to get the latest ID for a Windows Azure Table Insert

Is it possible to get the latest id which was insert into a table via windows azure? my code looks like this: private IMobileServiceTable<FooToo> MyTable = ...
-1
votes
1answer
26 views

How many tables can you put in one windows azure storage account? [closed]

The documentation I see says that there can be "Many" tables in one storage account. Does anyone actually know the limit?
0
votes
1answer
37 views

Not able to update an entity of type string in azure table storage to null

I have user table which has an attribute called "PictureUri" of string type. By default its null and then i update it to some text. Later if i try to update it to null again, it doesnt happen. The ...
0
votes
0answers
75 views

Azure Table Storage, Cassandra or HBase for caching

Have a nice day! I am developing site with a large number of users and contents, so I need to cache some data about their (in format like string key and serialized array or columns - millions rows). ...
1
vote
2answers
37 views

Proper use of Azure storage. (When to use SQL, Tables and Blobs)

I am relatively new to Azure storage and have been implementing a solution for some time now. And I keep hitting obstacles, making me feel that I'm not applying the right storage type for the data I'm ...
-1
votes
1answer
24 views

What is PartitionKey and Rowkey in AzureTableStorage? [closed]

What is PartitionKey and Rowkey in AzureTableStorage. Any difference having this?
1
vote
2answers
68 views

Migrating Azure Table storage

I have a cloud native app based on azure. The app uses azure table storage. Due to a fantastic opportunity I have decided to also provide the app on-premises. So I have to replace the NoSql data ...
0
votes
0answers
8 views

Azure WAD* Table Storage Costs

I'm working on a large scale web project hosted in azure. Our requirement is to have performance counters stored on azure storage tables. There are over 100 performance counters for each web roles ...
0
votes
0answers
49 views

Applying Dynamic LINQ on Azure table storage is thowing exception Value cannot be null

Im trying to query the azure table storage's Table using Dynamic LINQ Queries to get only subset of columns along dynamic constructed predicate. I was able to successfully generate predicate, but to ...
1
vote
2answers
45 views

Is it possible to have the Windows Azure emulator open the browser to a URL other than 127.0.0.1

Simple question but lots of meaning/discussion behind!!! Is it possible to have the Windows Azure emulator open the browser to a URL other than 127.0.0.1 and port 81?
1
vote
1answer
67 views

Why Azure Table Storage has a different DateTime.MinValue limit than .NET

.NET DateTime.MinValue is 1/1/0001, however Windows Azure Table Storage does not accept this value, because it has a different lower limit: CloudTableClient.MinSupportedDateTime. Why there is such a ...
0
votes
1answer
40 views

Is there a log viewer application that can read log messages from Azure Table Storage?

Microsoft recently released Enterprise Library 6 which contains the new Semantic Logging Block. One of the options available with the Semantic Logging Block is the ability to write log messages to ...
0
votes
1answer
32 views

CloudTable.ExecuteQuery : how to get number of transactions

AFAIK the ExecuteQuery handles segmented queries internally. And every request (=call to storage) for a segment counts as a transaction to the storage (I mean billing transaction - ...
1
vote
1answer
59 views

How to do a bulk insert using WCF in a Worker Role

I have a WCF running in a Worker Role with a method that does an insert in Tables. I have a lot of clients that will access this method to insert data in Tables, but I really need performance on ...
0
votes
1answer
36 views

azure table storage from outside

When using azure table storage from an app outside cloud does the speed of a transaction decrease and by how much?
0
votes
0answers
38 views

Save image in Windows Azure Mobile service

Anyone who can help me how to save images in Windows Azure Mobile service from an iOS client? I have one table with primary keys and want so save items. But I also want to store images from my app. ...
0
votes
2answers
82 views

Optimize Windows Azure Table Storage?

I have about 28GB of Data-In for a little over 13.5 million rows stored in Windows Azure Table Storage. 6 Columns, all ints except 1 decimal and 1 datetime. Partition Key is about 10 characters long. ...
0
votes
2answers
31 views

Best Practice in Deleting Azure Table Entities in ForEach Loop

I have not had consistent results when deleting entities in an Azure table when the deletion occurs in a “foreach” loop. PartitionKey is unique. Is there a best practice that folks can recommend? I ...
0
votes
0answers
30 views

Can't get Azure TableEntity etag on CreateQuery

I'm doing a query for entities from a table, changing them, then doing a replace operation. The replace operation fails because the etag property on the etag is null. I checked, and the etag is null ...
1
vote
1answer
97 views

Does Azure TableQuery handle continuation tokens internally?

I'm trying to find a definitive answer to the question of continuation tokens and the Azure Storage Library 2.0, as there seems to be significant differences between pre-2.0 versions (StorageClient) ...
0
votes
1answer
48 views

Azure pricing for sorting or filtering table entities

I am very new to Windows azure. I was just curious how the calculation of number of transactions for sorting or filtering the azure storage tables work?
1
vote
1answer
73 views

Windows Azure Table Stoarge and Authentication, more than 100 hits per second

I need solution / recommendation from your expert opinion... We are building an API solution where users will send us a unique code along with user name and password to get the authentication code ...
1
vote
1answer
126 views

Authorization Header for Windows Azure Storage REST API from Windows Store App

So I am just trying to list the tables in the storage account to test the authorization using the Query Tables method. I tried using the SDK, but the SDK was trying to reference DLLs that aren't ...
-1
votes
1answer
71 views

Which C# field creates an Azure Table Storage column as “binary” type

If you have bool, int, string or Guid types as members in your C# TableEntity class, these are converted to Azure Table columns with appropriate types. It seems like an Azure Table column can be of ...
2
votes
1answer
229 views

Design of Partitioning for Azure Table Storage

I have some software which collects data over a large period of time, approx 200 readings per second. It uses an SQL database for this. I am looking to use Azure to move a lot of my old "archived" ...
0
votes
1answer
159 views

Transactions and Continuation tokens in Windows Azure Storage Tables

How many transactions are fired for retrieving 1200 entities in Azure Storage Tables, keeping continuation Tokens in mind. I have read that " Windows Azure Tables returns up to a maximum of 1000 ...
0
votes
1answer
53 views

Aggregate functions on windows azure storage tables

I have a Windows Azure Storage table in which i am storing more than 1000k+ rows(entities). I wants to perform few aggregate functions on the table like counting on specific column for a specific ...
1
vote
1answer
66 views

Not able to add entities to a azure storage table in node.js when deployed to cloud?

I am using socket.io in node.js to implement chat functionality in my azure cloud project. In it i have been adding the user chat history to tables using node.js. It works fine when i run it on my ...
0
votes
2answers
72 views

WADPerformanceCountersTable is not created

I am trying to collect some performance counters from a worker role and WADPerformanceCountersTable is never created. public override bool OnStart() { // Set the maximum number of concurrent ...
0
votes
2answers
51 views

Non-derived POCO and Azure Storage

Is it possible to have a non-derived POCO for Azure Table Storage? In other words, a POCO that does not derive from TableEntity or implement ITableEntity? It seems a step backward to have to have a ...
0
votes
1answer
90 views

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 text, like this in T-SQL: message like '%SysFn%' Executing the T-SQL gives "An ...
0
votes
1answer
52 views

Azure Table QuerySegmented no return

I am trying to pull a group of entities from an AzureTable and am using the following code to query it. string partitionKey = string.Format(CultureInfo.InvariantCulture, "{0:d20}", accountId); string ...
0
votes
2answers
55 views

Setup a partition and row key for user account database in Windows Azure

I'm just a little bit stumped at the moment on a small issue. I want to setup an accounts table where all the registered users data lives. This table will contain stuff like email, addresses, SRP ...
1
vote
1answer
170 views

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 table. This table will really only exist to provide a quick lookup mechanism to some ...
0
votes
2answers
110 views

window azure mobile service for android fetching multiple records based on different values

I am using window azure mobile service for creating database in my android application. I have given third party library to access all the details within the table.However these library do not have ...
1
vote
1answer
156 views

Prevent Azure TableEntity property from being serialized in MVC 4 WebAPI

So I have a Model Subscription which inherits from Azure's TableEntity class for use in a WebApi Get method as follows: [HttpGet] public IEnumerable<Subscription> Subscribers() In this ...
0
votes
0answers
55 views

Table storage: $top broken after migration to Azure 1.8 SDK?

I use Data Services to query Azure Tables. In 1.7 version of SDK any query to a table that had top > 1000 would be split into several queries and correct top was calculated for each one. For example ...
1
vote
1answer
164 views

Windows Azure Table Storage row size limit is less than the stated 1MB

I have done a lot of research on table storage and its size limitations, overhead etc. using these sources: ...
0
votes
0answers
80 views

Azure Table SDK 2 EntityResolver using reflection

I am trying to use EntityResolver to dynamically populate an empty object from an Azure TableResult.Execute, debug doesnt get into the Test method unless you omit the match.SetValue call. It throws an ...
0
votes
1answer
74 views

Azure Storage Table - Unable to add user-defined property/field

I have been starting work on using Microsoft Windows Azure storage tables. Everything seems to work fine -- I can create tables and insert rows, with one problem -- I can't seem to insert a row with ...
0
votes
1answer
65 views

Connect to Windows azure storage table from Lightswitch 2012

I need to connect to Windows azure storage table from Lightswitch 2012 app. I found this extension, but it is only for Microsoft Visual Studio 2010 any adsices ?
0
votes
1answer
56 views

Generic table storage entity retrieval

I am playing with azure table storage entity retrieval and got a good ms example http://www.windowsazure.com/en-us/develop/net/how-to-guides/table-services-v17/#retrieve-range-entities in case ur ...
0
votes
0answers
66 views

Azure Storage for Windows Runtime and Bing Maps

I have developed an application for windows store Apps/Windows Runtime using azure storage library downloaded from these links. Knowledge Articles including the location of Azure storage download ...
0
votes
4answers
226 views

The fastest way to purge/copy Azure Storage Table data to SQL Azure?

I have these worker roles that are aggregating incoming data and store the totals in the Azure Storage Tables. I need this data to be purged/copied (on specified interval) to SQL Server for reporting. ...
0
votes
0answers
24 views

how to transfer data between Azure tables and Hadoop on Azure

I would like to import data from Azure table and then export to Hadoop cluster on Azure. Currently I am downloading the data from Azure table into .csv and then uploading the .csv to Hadoop cluster. I ...
1
vote
2answers
68 views

Azure Table Storage inserting date properties incorrectly

Why do I have to create my entities' DateTime properties with DateTimeKind.Local? For example, I need to set the following property like so before inserting it into my table: ...
0
votes
1answer
148 views

Azure Table Storage batch inserts across multiple partitions?

The following method can be used to batch insert a collection of entities as a single transaction: CloudTable.ExecuteBatch(TableBatchOperation batch) If any of the entities fail during insert, then ...
1
vote
1answer
220 views

Azure Table Storage - RowKey design for ordered data

I store large quantities of GPS data in storage tables. Each partition can reach up to 1 million entities. Each GPS entity that is inserted into the table is actually sequential to the previous data ...
1
vote
3answers
159 views

Azure Storage Table design with multiple query points

I have the following Azure Storage Table. PositionData table: PartitionKey: ClientID + VehicleID RowKey: GUID Properties: ClientID, VehicleID, DriverID, Date, GPSPosition Each vehicle will log ...

1 2 3 4 5 9