Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam 312-49v10 All Questions

View all questions & answers for the 312-49v10 exam

Exam 312-49v10 topic 1 question 476 discussion

Actual exam question from ECCouncil's 312-49v10
Question #: 476
Topic #: 1
[All 312-49v10 Questions]

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?

  • A. DBCC LOG(Transfers, 1)
  • B. DBCC LOG(Transfers, 3)
  • C. DBCC LOG(Transfers, 0)
  • D. DBCC LOG(Transfers, 2)
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
aqeel1506
4 months ago
B. DBCC LOG(Transfers, 3) Here’s why: DBCC LOG is a command used in SQL Server to read and display the transaction log for a specified database. The command’s second parameter specifies the level of detail to be displayed. The options provided represent different levels of detail: 0: Minimal detail 1: Basic detail (log record type and details) 2: Intermediate detail (includes more columns) 3: Maximum detail (includes the most comprehensive data, including AllocUnitId, page id, slot id, and more) So, to extract detailed information including AllocUnitId, page id, slot id, etc., you should use the command with parameter 3 to get the most detailed view.
upvoted 2 times
...
Elb
7 months, 1 week ago
D > type - is the type of output, and includes these options: 0 - minimum information (operation, context, transaction id) 1 - more information (plus flags, tags, row length, description) 2 - very detailed information (plus object name, index name, page id, slot id) 3 - full information about each operation 4 - full information about each operation plus hexadecimal dump of the current transaction log's row.
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...