Registriert seit: 14. Apr 2008
3.006 Beiträge
Delphi 2009 Professional
|
Re: Noch offene Transaktionen seitens des Servers löschen
5. Apr 2009, 20:39
Zitat von mschaefer:
Wie kann ich noch offene Transaktionen seitens des Servers löschen?
Die MON$ATTACHMENTS und MON$STATEMENTS Tabellen bieten diese Möglichkeit. Beispiele:
http://www.firebirdsql.org/rlsnotesh...l#25-new-admin
Zitat:
To cancel all current activity for a specified connection:
SQL-Code:
DELETE FROM MON$STATEMENTS
WHERE MON$ATTACHMENT_ID = 32
Zitat:
To disconnect all clients except the “Me” connection:
SQL-Code:
DELETE FROM MON$ATTACHMENTS
WHERE MON$ATTACHMENT_ID <> CURRENT_CONNECTION
Ab FireBird 2.5
|