At 03:45 PM 4/1/2003 +0200, you wrote:
Ich m�chte ziemlich viele Datens�tze l�schen und bekomme beim SQL2000 Server folgende Meldung. Das Logfile ist auch wirklich gr��er als die DB selbst. Wie schaffe ich denn wieder Platz bzw. wie kann ich das Ding l�schen?? Kann ich das im Maintenanche plan einrichten?

Server: Msg 9002, Level 17, State 6, Line 1
Die Protokolldatei f�r die U_Damix-Datenbank ist voll. Sichern Sie das Transaktionsprotokoll f�r die Datenbank, um Protokollspeicherplatz freizugeben.

durch ein Backup wird das Transaction Log abgetrennt, oder durch


Truncating the transaction log:

BACKUP LOG { database_name | @database_name_var }
{
    [ WITH
        { NO_LOG | TRUNCATE_ONLY } ]
}

also backup log mydatabase with truncate_only

Chris

~~~~~~~~~~~~~~~~~~~~~~~~~~~sponsored by United Planet~~~~~~~~~~~~~~~~~
Intrexx.BizWalker + ODBC/OLEDB-Daten = ASP-Formular
ATTACK! Download Intrexx CRM-Studio Now!   http://www.intrexx.com
_______________________________________________
Database.asp mailing list
[EMAIL PROTECTED]
http://www.glengamoi.com/mailman/listinfo/database.asp

Antwort per Email an