How to find the last Transactions in SQL SERVER

  • Dear All Gurus

    How to find the last Transactions in SQL SERVER. What r the different ways to get the Last Transactions using Profiler i can check.

    Any help would be greatly appreciated

    Regds

    Dharmendra

    Thanks & Regards
    Dharmendra S Mudaliar
    ( OEM India RSA )
    Hello - +91 40 66934555 x 34555
    Mobile - 9885408049 | IM - v-dharmu@microsoft.com

  • If you were already running profiler, you could sort through the transactions, btu you'd have to know if implicit transactions were on for any connections, group up connection traces, etc.

    Lumigent, Log PI, ApexSQL, all have products to read the transaction log, one of which would be the best way to determine this.

    Why do you want this?

  • Dear Steve

    Thanx for your answer. I wanted to find the last transaction becoz one of my ASP script page has something to do with the SQL Procedure. And more than 23 Users executing the same page and i have saved those changes into Cookies so i wanted to find out the last Transaction that happened through Pages. So that i can find out what exactly happened. I know can be happened with Profiler.

    Regds

    Dharmendra

    Thanks & Regards
    Dharmendra S Mudaliar
    ( OEM India RSA )
    Hello - +91 40 66934555 x 34555
    Mobile - 9885408049 | IM - v-dharmu@microsoft.com

  • There is

    select top 10 * from ::fn_dblog( default, default )

    but it does not give the actual sql statements.

    karl

    Best regards
    karl

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply