nerdexam
Microsoft

70-465 · Question #53

You need to recommend a solution that addresses the backup issue. The solution must minimize the amount of development effort. What should you include in the recommendation?

The correct answer is B. Filegroups. To address a backup issue with minimal development effort, Filegroups allow selective backup and restore of specific portions of a database, providing granular control without requiring significant code changes.

Submitted by skyler.x· Mar 5, 2026Design and implement database solutions for SQL Server

Question

You need to recommend a solution that addresses the backup issue. The solution must minimize the amount of development effort. What should you include in the recommendation?

Options

  • AIndexed views
  • BFilegroups
  • CTable partitioning
  • DIndexes

How the community answered

(42 responses)
  • A
    10% (4)
  • B
    81% (34)
  • C
    5% (2)
  • D
    5% (2)

Why each option

To address a backup issue with minimal development effort, Filegroups allow selective backup and restore of specific portions of a database, providing granular control without requiring significant code changes.

AIndexed views

Indexed views are precomputed result sets stored as physical data used to improve query performance, and they have no direct capability to address backup or restore challenges.

BFilegroupsCorrect

Filegroups allow a database to be divided into separate storage units, enabling partial or piecemeal backups and restores at the filegroup level. This means you can back up only the filegroups containing critical or frequently changing data, reducing backup windows and recovery times. Implementing filegroups requires configuration changes rather than application code changes, minimizing development effort.

CTable partitioning

Table partitioning divides large tables into smaller segments for manageability and performance, but it does not directly provide a mechanism for selective or optimized backups without additional configuration and development work.

DIndexes

Indexes are data structures that improve query performance by enabling faster data retrieval, and they have no functionality related to backup strategies or resolving backup issues.

Concept tested: SQL Server filegroups for selective database backup

Source: https://learn.microsoft.com/en-us/sql/relational-databases/backup-restore/back-up-files-and-filegroups-sql-server

Topics

#Filegroups#Backup strategy#Database administration#Physical database design

Community Discussion

No community discussion yet for this question.

Full 70-465 Practice