DRAG DROP
You have a SQL Server 2012 database named Database1. Database1 has a data file
named Database1_data.mdf and a transaction log named Database1jog.ldf.
Database1_data.mdf is 1.5 GB. Database1jog.ldf is 1.5 terabytes.
A full backup of Database1 is performed every day.
You need to reduce the size of the log file. The solution must ensure that you can perform
transaction log backups in the future.
Which code segment should you execute?
To answer, move the appropriate code segments from the list of code segments to the
answer area and arrange them in the correct order.
TRUNCATE_ONLY option is not available since SQL 2008.
Correct answer looks like this to me:
1) ALTER DATABASE database1 SET RECOVERY SIMPLE
2) DBCC SHRINKFILE(database1_log,1)
3) ALTER DATABASE database1 SET RECOVERY FULL
http://www.brentozar.com/archive/2009/08/backup-log-with-truncate-only-in-sql-server-2008/
Right answer
I agree
zzz is corect
i agree with ZZZ too