nerdexam
Microsoft

70-465 · Question #109

You work as a Database Administrator (DBA) for a company named ABC.com. The company has a Windows Azure subscription. The company uses a cloud based SQL Server environment hosted on SQL Azure…

The correct answer is C. Data encryption. This question tests knowledge of appropriate encryption methods for securing sensitive data stored in a SQL Azure database, including credentials and credit card numbers.

Submitted by helene.fr· Mar 5, 2026Design and implement database solutions for Azure SQL Database

Question

You work as a Database Administrator (DBA) for a company named ABC.com. The company has a Windows Azure subscription. The company uses a cloud based SQL Server environment hosted on SQL Azure. Developers in your company are creating an ecommerce website. You are designing a database for the website. The database will be hosted on SQL Azure. The database will store and reuse web site login details and customer credit card numbers. You need to ensure the username, passwords and credit card details are securely stored in the database. Which of the following would be the most suitable secure storage solution?

Options

  • ASecure Sockets Layer (SSL)
  • BIPSec
  • CData encryption
  • DTransparent Data Encryption (TDE)
  • EEncrypting File System (EFS)

How the community answered

(37 responses)
  • A
    8% (3)
  • B
    3% (1)
  • C
    73% (27)
  • D
    14% (5)
  • E
    3% (1)

Why each option

This question tests knowledge of appropriate encryption methods for securing sensitive data stored in a SQL Azure database, including credentials and credit card numbers.

ASecure Sockets Layer (SSL)

SSL (Secure Sockets Layer) encrypts data in transit between client and server but does not protect data at rest stored in the database.

BIPSec

IPSec is a network-layer protocol that secures communication between network nodes in transit and does not provide encryption for data stored within a database.

CData encryptionCorrect

Data encryption (column-level or application-level encryption) is the most suitable solution for securing specific sensitive fields like usernames, passwords, and credit card numbers within a database. It allows targeted encryption of individual columns containing sensitive data, ensuring that even users with database access cannot read the plaintext values of protected fields. This approach directly addresses the requirement to securely store and reuse specific sensitive data elements at rest within SQL Azure.

DTransparent Data Encryption (TDE)

Transparent Data Encryption (TDE) encrypts the entire database at the file/storage level, protecting physical media, but does not encrypt individual columns so authorized database users can still read sensitive values like passwords and credit card numbers in plaintext.

EEncrypting File System (EFS)

Encrypting File System (EFS) is a Windows file-system-level encryption feature that protects files on disk and is not applicable to encrypting specific data values stored within a SQL Azure database.

Concept tested: Column-level data encryption for sensitive database fields

Source: https://learn.microsoft.com/en-us/sql/relational-databases/security/encryption/encrypt-a-column-of-data

Topics

#Data encryption#SQL Azure security#Sensitive data protection

Community Discussion

No community discussion yet for this question.

Full 70-465 Practice