I was importing around 200 rows of a exported table from a MySQL server. I didn't know that i needed a partition key and row key so I set it through the CSV making 2 new columns and filling them up with the table name. Than I imported the CSV. It showed me the first entry and it look fine so I imported it than midway I got a error saying N/A was not acceptable and it quit. Looking at the data imported it's completely off.
What did I do wrong?
I need to import about 200 more tables.
Sample Data: Not actual data as it's my user table (not relational)
Imported using Azure Table Storage Explorer
Columns: Name| Username| Email | Hash | Salt | ParitionKey| RowKey Row 1: Janet| admin| [email protected]| 203weg0897wg| 33&23j | site | site
That's pretty much how it went. But when I import the first row is fine than the columns mess up and than like username goes into partition key and stuff like that. It doesn't get imported into the right columns.
Yes I did put the table name as the partition key and row key. I did not realize that each entity needed it to be different. But I need to know which entity is from which table. Should I put them into separate partitions? I need them all in one table. What would be the solution?
Looking at the data imported it's completely off.
and 3) How are you importing the data? Are you using some kind of tool to import? – Gaurav Mantri