PartitionKey was not specified in azure table storage

Viewed 3313

I am trying to load/import the data into table storage from a csv file via azure storage explorer , but I am getting the following error as

An error occurred while opening the file 'D//sample.csv'.the required property 'Partitionkey' was not specified.

enter image description here

Kindly clarify the importance of Partitionkey and Rowkey in azure table storage?

4 Answers

I recommend you change the region in Windows to English (U.S). So, you can save a spread-sheet as CSV-file with comma instead of semicolon as separator.

As example, if you are using Switzerland, you will get a CSV-file with semicolon as separator and azure will not find the Partitionkey.

Related