You are using the following command to backup your database PSGHT:
BACKUP DATABASE PSGHT
TO PSGHT_1
WITH INIT
GO
What does the command WITH INIT do?
A.
INIT initializes the backup media.
B.
INIT initializes the backup process.
C.
INIT overwrites the backup media.
D.
INIT appends the backup to the existing backup set on the media.
Explanation:
INIT overwrites the backup media and writes the backup as the first file on the backup media.
Answer options A, B, and D are incorrect. These are not the valid answers for the purpose of the INIT
command.