Home
Explore
Exams
Search for anything
Login
Get started
Home
Azure 12 Table Storage Practice Flashcards
Azure 12 Table Storage Practice Flashcards
0.0
(0)
Rate it
Studied by 0 people
Learn
Practice Test
Spaced Repetition
Match
Flashcards
Card Sorting
1/6
There's no tags or description
Looks like no tags are added yet.
Study Analytics
All
Learn
Practice Test
Matching
Spaced Repetition
Name
Mastery
Learn
Test
Matching
Spaced
No study sessions yet.
7 Terms
View all (7)
Star these 7
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.