Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Using ::fn_dblog() to find who deleted the rows in a table.

    SELECT

    [Current LSN],

    [Operation],

    [Transaction ID],

    [Description], SPID,[Begin Time], [Transaction SID],

    name 'LoginName'

    FROM fn_dblog (NULL, NULL),

    (select sid,name from sys.syslogins) sl

    where [Transaction Name] LIKE '%delete%' and [Transaction SID] = sl.sid

    this query is not showing...

  • RE: SQL Server 2008 R2 Log Shipping Problem

    Hi,

    when secondary DB is put in norecovery mode and log backup happening at every 1 minute. So, restoring happening continuosly and that is the reason you were seeing such...

Viewing 2 posts - 1 through 2 (of 2 total)