To read the transaction log of SQL Server database use DBCC Log command and passed desired parameter.
DBCC log (MY_DB, 4)
DBCC LOG(<database name>[,{0|1|2|3|4}])
0 ? Basic Log Information (default)
1 ? Lengthy Info
2 ? Very Length Info
3 ? Detailed
4 ? Full Example
Thanks