From the various info I have read about fn_dblog()
in MS-SQL, I thought that AllocUnitName
contained the table name. But recently, I was checking for deletion of a specific table's row but could not find its name in the results returned by fn_dblog(null,null)
. There are rows that have dbo.MyTable.PK_xxxx
but nothing with just dbo.MyTable
. This is a table that has tens of transactions daily so I am wondering if AllocUnitName
is the correct place to look for the table name. I am using MS-SQL 2008 R2 here.
So, if AllocUnitName
is not the right place to look, where should I look in the results returned by fn_dblog(null,null) to get records specific to a specific table.