Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Database & SysAdmin
  3. Database
  4. Database question

Database question

Scheduled Pinned Locked Moved Database
databasequestionsql-serversysadmin
3 Posts 2 Posters 2 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G Offline
    G Offline
    Grindorin
    wrote on last edited by
    #1

    Under SQL Server 2000, is it possible to review the transaction log for a specific database? If so, how? Semper Fidelis

    A 1 Reply Last reply
    0
    • G Grindorin

      Under SQL Server 2000, is it possible to review the transaction log for a specific database? If so, how? Semper Fidelis

      A Offline
      A Offline
      Arjan Einbu
      wrote on last edited by
      #2

      On http://www.mssqlcity.com/Articles/Undoc/SQL2000UndocDBCC.htm[^] I found this:

      8. DBCC log
      This command is used to view the transaction log for the specified database.

      Syntax:
      DBCC log ( {dbid|dbname}, [, type={-1|0|1|2|3|4}] )
      PARAMETERS:
      Dbid or dbname - Enter either the dbid or the name of the database
      in question.

        type - is the type of output:
      
        0 - minimum information (operation, context, transaction id)
      
        1 - more information (plus flags, tags, row length, description)
      
        2 - very detailed information (plus object name, index name,
            page id, slot id)
      
        3 - full information about each operation
      
        4 - full information about each operation plus hexadecimal dump
            of the current transaction log's row.
      
       -1 - full information about each operation plus hexadecimal dump
            of the current transaction log's row, plus Checkpoint Begin,
            DB Version, Max XDESID
      

      by default type = 0
      To view the transaction log for the master database, run the following command:

      DBCC log (master)

      Also, there are some third-party tools that will let you look into, and manipulate db-logs...

      G 1 Reply Last reply
      0
      • A Arjan Einbu

        On http://www.mssqlcity.com/Articles/Undoc/SQL2000UndocDBCC.htm[^] I found this:

        8. DBCC log
        This command is used to view the transaction log for the specified database.

        Syntax:
        DBCC log ( {dbid|dbname}, [, type={-1|0|1|2|3|4}] )
        PARAMETERS:
        Dbid or dbname - Enter either the dbid or the name of the database
        in question.

          type - is the type of output:
        
          0 - minimum information (operation, context, transaction id)
        
          1 - more information (plus flags, tags, row length, description)
        
          2 - very detailed information (plus object name, index name,
              page id, slot id)
        
          3 - full information about each operation
        
          4 - full information about each operation plus hexadecimal dump
              of the current transaction log's row.
        
         -1 - full information about each operation plus hexadecimal dump
              of the current transaction log's row, plus Checkpoint Begin,
              DB Version, Max XDESID
        

        by default type = 0
        To view the transaction log for the master database, run the following command:

        DBCC log (master)

        Also, there are some third-party tools that will let you look into, and manipulate db-logs...

        G Offline
        G Offline
        Grindorin
        wrote on last edited by
        #3

        This is what I needed. Thank you for your help. Semper Fidelis

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups