DS0-001 · Question #21
A database administrator needs to ensure database backups are occurring on a daily basis and at scheduled times. Which of the following actions should the administrator take?
The correct answer is D. Review the server logs for entries. To confirm that automated backups are running on schedule, a DBA should review the server logs for entries (option D). Database backup systems - whether built-in (SQL Server Agent, pg_cron, etc.) or third-party - write timestamped log entries indicating when a backup job…
Question
A database administrator needs to ensure database backups are occurring on a daily basis and at scheduled times. Which of the following actions should the administrator take?
Options
- AQuery the database to observe entries.
- BCheck the database schema.
- CReview the backup media.
- DReview the server logs for entries.
How the community answered
(33 responses)- A6% (2)
- B3% (1)
- C15% (5)
- D76% (25)
Explanation
To confirm that automated backups are running on schedule, a DBA should review the server logs for entries (option D). Database backup systems - whether built-in (SQL Server Agent, pg_cron, etc.) or third-party - write timestamped log entries indicating when a backup job started, completed, and whether it succeeded or failed. These logs provide definitive evidence of backup execution history and timing. Option A (querying the database for entries) checks data content, not backup activity. Option B (checking the database schema) shows table structure, unrelated to backup scheduling. Option C (reviewing the backup media) confirms that backup files exist but does not confirm the schedule or frequency of future runs; it is also less efficient than reading logs.
Topics
Community Discussion
No community discussion yet for this question.