Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
YogeshDesai
Posting Yak Master
136 Posts |
Posted - 2007-09-14 : 09:47:26
|
| Hi guys got the following entery in log file,"2007-09-03 18:31:36.71 spid39 The log file for database 'UAT_FR_FPFF_SPORTING' is full. Back up the transaction log for the database to free up some log space.."Could you help me to step by step to fix this issue pleaseYogesh V. Desai. | SQLDBA| |
|
|
ratheeshknair
Posting Yak Master
129 Posts |
Posted - 2007-09-14 : 09:59:02
|
| Issue check point that will commit the uncommited transactions.Backup the databse will do the same.dbcc shrinkfile('log file path',size)....If all these are not working then take a full backup,change the recovery mode to simple and then run dbcc shrinkfile('log file path',size).It will definitely work.RKNAIR |
 |
|
|
Kristen
Test
22859 Posts |
|
|
YogeshDesai
Posting Yak Master
136 Posts |
Posted - 2007-09-14 : 10:44:37
|
| hi Guys I can see the more in my log files The log file for database 'UAT_FR_AI_ED' is full. Back up the transaction log for the database to free up some log space..Could not write a CHECKPOINT record in database ID 32 because the log is out of space.Error while undoing logged operation in database 'UAT_FR_FPFF_BOAVISTA'. Error while undoing logged operation in database 'UAT_FR_FPFF_BOAVISTA'. 2007-09-03 18:31:34.50 Recovery is checkpointing database 'UAT_FR_KEYNESQS_LEV' (12)transactions rolled forward in database 'UAT_FR_FPFF_SPORTING' (37).0 transactions rolled back in database 'UAT_FR_FPFF_SPORTING' (37).Recovery is checkpointing database 'UAT_FR_FPFF_SPORTING' (37)L:\mssql\applog\UAT_FR_FPFF_SPORTING_log.ldf: Operating system error 112(error not found) encountered.The log file for database 'UAT_FR_FPFF_SPORTING' is full. Back up the transaction log for the database to free up some log space.Need serious help on thisYogesh V. Desai. | SQLDBA| |
 |
|
|
Kristen
Test
22859 Posts |
Posted - 2007-09-14 : 11:40:22
|
| Did you check if your disk was full?Did you read the link I posted?If so make some space available, and backup the database.If space is still really tight consider shrinking the TLog, but I recommend that you only do this if you know that your TLog is exceptionally large for some reach e.g. you never backed it up, or you did some massive one-off delete). Otherwise the Tlog will be back the same size by tomorrow ...Kristen |
 |
|
|
|
|
|