Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cannot change db to full recovery

Status
Not open for further replies.

Luvsql

Technical User
Joined
Apr 3, 2003
Messages
1,179
Location
CA
I need to backup our log (too big) but cannot change recovery to full. I receive the following error "Backup and file manipulation operations (such as ALTER DATABASE ADD FILE) on a database must be serialized."

I need to shrink the log as it is taking up to much space, but can't back it up either.
 
Sounds like someone else is running an ALTER DATABASE command. If lots of extents are happening those are ALTER DATABASE commands and you will need to stop what ever is causing the database to grow.

Why do you trying to switch the database to FULL recovery? What recovery mode is the database in?

If the database is in simple recovery and the log is growing that's because someone is running a large command which is using a lot of log space. Once the command is done the log will truncate and you can shrink it with the DBCC SHRINKFILE command.

Denny
MCSA (2003) / MCDBA (SQL 2000) / MCTS (SQL 2005) / MCITP Database Administrator (SQL 2005)

--Anything is possible. All it takes is a little research. (Me)
[noevil]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top