• Welsh Corgi (6/30/2015)


    I do not see where this code is reading a Transaction Log?

    SELECT [Transaction Id], [Begin Time], SUSER_SNAME ([Transaction SID]) AS [User]

    FROM fn_dblog (NULL, NULL)

    WHERE [Transaction Name] = N’DROPOBJ';

    GO

    The fn_dblog function is what reads the log.

    Cheers!