The log file for database is full

后端 未结 12 1046
时光取名叫无心
时光取名叫无心 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条回答
  •  Happy的楠姐
    2021-02-08 17:59

    Scott, as you guessed: truncating the log is a bad move if you care about your data.

    The following, free, videos will help you see exactly what's going on and will show you how to fix the problem without truncating the logs. (These videos also explain why that's such a dangerous hack and why you are right to look for another solution.)

    • SQL Server Backups Demystified
    • SQL Server Logging Essentials
    • Understanding Backup Options

    Together these videos will help you understand exactly what's going on and will show you whether you want to switch to SIMPLE recovery, or look into actually changing your backup routines. There are also some additional 'how-to' videos that will show you exactly how to set up your backups to ensure availability while managing log file sizing and growth.

提交回复
热议问题