Azure 12 Table Storage Practice Flashcards

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/6

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

7 Terms

1
New cards
What is Azure Table Storage used for?
Storing structured, non-relational data in a schemaless format.
2
New cards
Which Python SDK is used for Azure Table Storage?
azure.cosmosdb.table
3
New cards
How do you define a connection to Azure Table Storage?
Use `TableService(connection_string=...)`
4
New cards
What is the format of a table entity?
A dictionary with required 'PartitionKey' and 'RowKey', and optional typed attributes.
5
New cards
What method inserts or replaces an entity in a table?
`insert_or_replace_entity(table_name, entity)`
6
New cards
How do you list all tables in a storage account?
Use `list_tables()` method on the TableService client.
7
New cards
How do you delete a table in Azure Table Storage?
Use `delete_table(table_name)` method.