Sqlserver
 sql >> Datenbank >  >> RDS >> Sqlserver

So zeigen Sie Transaktionsprotokolle in SQL Server 2008 an

Sie könnten das undokumentierte

verwenden
DBCC LOG(databasename, typeofoutput)

wobei Typ der Ausgabe:

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.

Beispiel:DBCC LOG(database, 1)

Sie könnten es auch mit fn_dblog versuchen.

Um eine Transaktion mithilfe des Transaktionsprotokolls zurückzusetzen, würde ich einen Blick auf Stack Overflow post Transaktion mithilfe des Transaktionsprotokolls zurücksetzen werfen .