The log file for database is full

后端 未结 12 834
时光取名叫无心
时光取名叫无心 2021-02-08 17:15

So our SQL Server 2000 is giving me the error, \"The log file for database is full. Back up the transaction log for the database to free up some log space.\"

How do I go

12条回答
  •  误落风尘
    2021-02-08 17:40

    If it's a non production environment use

    dump tran  with no_log;
    

    Once this has completed shrink the log file to free up disk space. Finally switch database recovery mode to simple.

提交回复
热议问题