As a part of the investigation, Caroline, a forensic expert, was assigned the task to examine the transaction logs pertaining to a database named "Transfers". She used SQL Server Management Studio to collect the active transaction log files of the database. Caroline wants to extract detailed information on the logs, including AllocUnitId, page id, slot id, etc. Which of the following commands does she need to execute in order to extract the desired information?
|
|
Explanation: Syntax: DBCC LOG(<databasename >, <output >)
The output parameter specifies the level of information that a forensic examiner wants to retrieve
0= minimal information of each operation such as the Current LSN, Operation, Transaction ID, etc.
1 = slightly more info than 0, such as Flag Bits, and Previous LSN
2 = detailed information, including (AllocUnitId, page id, slot id, etc.)
3 = full information about each operation
4 = full information on each operation along with the hex dump of the current transaction row
|
|