nerdexam
Microsoft

70-432 · Question #30

You are the administrator of a SQL Server 2008 instance with a database named DB1. You have set the recovery model of DB1 to Full. At 2:00 There is a full database backup of all the user databases…

The correct answer is D. BACKUP DATABASE DB1 TO DISK = 't:\backups\db1.bak' WITH COPY_ONLY. See the full explanation below for the reasoning.

Question

You are the administrator of a SQL Server 2008 instance with a database named DB1. You have set the recovery model of DB1 to Full. At 2:00 There is a full database backup of all the user databases every day. Every quarter the transaction log backup is performed. Every 4 hours a differential backup is occurred. You are going to perform a full backup of DB1 at 11:00. When you perform this back up, you must make sure that the overall backup will not be affected. What's more, you have to restore procedures for DB1. You must make sure that the backup files are restored in proper sequence. Which Transact-SQL statement should you use?

Options

  • ABACKUP LOG DB1 TO DISK = 't:\backups\db1.trn';
  • BBACKUP DATABASE DB1 TO DISK = 't:\backups\db1.bak' WITH DIFFERENTIAL;
  • CBACKUP DATABASE DB1 TO DISK = 't:\backups\db1.bak' WITH NOUNLOAD;
  • DBACKUP DATABASE DB1 TO DISK = 't:\backups\db1.bak' WITH COPY_ONLY;

How the community answered

(58 responses)
  • A
    12% (7)
  • B
    7% (4)
  • C
    3% (2)
  • D
    78% (45)

Community Discussion

No community discussion yet for this question.

Full 70-432 Practice