Sqlserver
 sql >> Teknologi Basis Data >  >> RDS >> Sqlserver

Cara melihat log transaksi di SQL Server 2008

Anda dapat menggunakan yang tidak berdokumen

DBCC LOG(databasename, typeofoutput)

di mana typeofoutput:

0: Return only the minimum of information for each operation -- the operation, its context and the transaction ID. (Default)
1: As 0, but also retrieve any flags and the log record length.
2: As 1, but also retrieve the object name, index name, page ID and slot ID.
3: Full informational dump of each operation.
4: As 3 but includes a hex dump of the current transaction log row.

Misalnya, DBCC LOG(database, 1)

Anda juga dapat mencoba fn_dblog.

Untuk mengembalikan transaksi menggunakan log transaksi, saya akan melihat postingan Stack Overflow Membalikkan transaksi menggunakan log transaksi .



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. SQL Server - mengendus parameter

  2. Cara Mencegah Serangan Injeksi SQL dengan Aman

  3. Ubah Fungsi Bernilai Tabel di SQL Server

  4. Permintaan PIVOT pada catatan Berbeda

  5. SQL Server - transaksi mundur karena kesalahan?