Azure Table Storage | Creating Your First Table | Data Storage Solution

Creating Azure Table Storage | DP-900 Exam Preparation | Microsoft Azure Data Fundamentals

Question

You need to store data by using Azure Table storage.

What should you create first?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

B

First create an Azure storage account, then use Table service in the Azure portal to create a table.

Note: An Azure storage account contains all of your Azure Storage data objects: blobs, files, queues, and tables.

https://docs.microsoft.com/en-us/azure/storage/tables/table-storage-quickstart-portal https://docs.microsoft.com/en-us/azure/storage/common/storage-account-create

To store data in Azure Table Storage, you need to create a storage account first.

A storage account provides a unique namespace to store and access your Azure data objects such as blobs, files, queues, tables, and disks.

Once you create a storage account, you can create an Azure Table within that storage account. Azure Table Storage is a NoSQL data store that provides a key-value-based data structure that enables the storage of structured data.

To create a table in Azure Table Storage, you will need to follow these steps:

  1. In the Azure portal, go to the storage account that you created.
  2. Under the "Services" section, select "Tables."
  3. Select "Add table" to create a new table.
  4. Enter a name for the table, and select "OK."

After you create a table, you can insert, update, delete, and query data using Azure Table Storage APIs, including REST APIs, .NET client libraries, and other client libraries.

In summary, the correct answer is B. a storage account, as it is the first step to create and manage various Azure data objects, including Azure Table Storage.