sqlite> DELETE FROM mails WHERE (`id` = 71);
SQL error: database is locked
How do I unlock the database so this will work?
How do I unlock the database so this will work? |
||||
|
|
|
In windows you can try this program http://www.nirsoft.net/utils/opened_files_view.html to find out the process is handling db file. Try closed that program for unlock database In Linux you can do something similar, for example, if your locked file is development.db:
This command will show what process is locking the file:
Just kill the process...
...And your database will be unlocked. |
|||||||||||||||
|
|
I caused my sqlite db to become locked by crashing an app during a write. Here is how i fixed it:
Taken from: http://random.kakaopor.hu/how-to-repair-an-sqlite-database |
|||||
|
|
|
The SQLite wiki DatabaseIsLocked page offers a good explanation of this error message. It states, in part, that the source of contention is internal (to the process emitting the error). What this page doesn't explain is how SQLite decides that something in your process holds a lock and what conditions could lead to a false positive. |
|||||
|
|
Deleting the -journal file sounds like a terrible idea. It's there to allow sqlite to roll back the database to a consistent state after a crash. If you delete it while the database is in an inconsistent state, then you're left with a corrupted database. Citing a page from the sqlite site:
The rollback is supposed to happen automatically the next time the database is opened, but it will fail if the process can't lock the database. As others have said, one possible reason for this is that another process currently has it open. Another possibility is a stale NFS lock, if the database is on an NFS volume. In that case, a workaround is to replace the database file with a fresh copy that isn't locked on the NFS server (mv database.db original.db; cp original.db database.db). Note that the sqlite FAQ recommends caution regarding concurrent access to databases on NFS volumes, because of buggy implementations of NFS file locking. I can't explain why deleting a -journal file would let you lock a database that you couldn't before. Is that reproducible? By the way, the presence of a -journal file doesn't necessarily mean that there was a crash or that there are changes to be rolled back. Sqlite has a few different journal modes, and in PERSIST or TRUNCATE modes it leaves the -journal file in place always, and changes the contents to indicate whether or not there are partial transactions to roll back. |
|||||
|
|
I had this problem just now, using an SQLite database on a remote server, stored on an NFS mount. SQLite was unable to obtain a lock after the remote shell session I used had crashed while the database was open. The recipes for recovery suggested above did not work for me (including the idea to first move and then copy the database back). But after copying it to a non-NFS system, the database became usable and not data appears to have been lost. |
|||
|
|
|
the SQLite db files are just files, so the first step would be to make sure it isn't read-only. The other thing to do is to make sure that you don't have some sort of GUI SQLite DB viewer with the DB open. You could have the DB open in another shell, or your code may have the DB open. Typically you would see this if a different thread, or application such as SQLite Database Browser has the DB open for writing. |
|||||
|
|
There might be another process accessing the database file - did you check lsof? |
|||
|
|
|
I found the documentation of the various states of locking in SQLite to be very helpful. Michael, if you can perform reads but can't perform writes to the database, that means that a process has gotten a RESERVED lock on your database but hasn't executed the write yet. If you're using SQLite3, there's a new lock called PENDING where no more processes are allowed to connect but existing connections can sill perform reads, so if this is the issue you should look at that instead. |
|||
|
|
|
If a process has a lock on an SQLite DB and crashes, the DB stays locked permanently. That's the problem. It's not that some other process has a lock. |
|||||
|
|
Should be a database's internal problem... 1) Provide to export your tables (You can use "sqlite manager" on Firefox) Good Luck! |
|||
|
|
This might be a solution if you are unable to find a way to close other connections to the database. http://technosophos.com/content/sqlite-database-locked-error-and-unlocking-database |
|||
|
|
|
I just had something similar happen to me - my web application was able to read from the database, but could not perform any inserts or updates. A reboot of Apache solved the issue at least temporarily. It'd be nice, however, to be able to track down the root cause. |
|||
|
|
lsof command on my Linux environment helped me to figure it out that a process was hanging keeping the file open. |
|||
|
|
|
I just had the same error. After 5 minets google-ing I found that I didun't closed one shell witch were using the db. Just close it and try again ;) |
|||
|
|
|
I had the same problem. Apparently the rollback function seems to overwrite the db file with the journal which is the same as the db file but without the most recent change. I've implemented this in my code below and it's been working fine since then, whereas before my code would just get stuck in the loop as the database stayed locked. Hope this helps my python code
|
|||
|
|
|
I have such problem within the app, which access to SQLite from 2 connections - one was read-only and second for writing and reading. It looks like that read-only connection blocked writing from second connection. Finally, it is turns out that it is required to finalize or, at least, reset prepared statements IMMEDIATELY after use. Until prepared statement is opened, it caused to database was blocked for writing. DON'T FORGET CALL:
or
|
|||
|
|
|
This error can be thrown if the file is in a remote folder, like a shared folder. I changed the database to a local directory and it worked perfectly. |
|||
|
|
From your previous comments you said a -journal file was present. This could mean that you have opened and (EXCLUSIVE?) transaction and have not yet committed the data. Did your program or some other process leave the -journal behind?? Restarting the sqlite process will look at the journal file and clean up any uncommitted actions and remove the -journal file. |
|||
|
|
|
I ran into this same problem on Mac OS X 10.5.7 running Python scripts from a terminal session. Even though I had stopped the scripts and the terminal window was sitting at the command prompt, it would give this error the next time it ran. The solution was to close the terminal window and then open it up again. Doesn't make sense to me, but it worked. |
|||
|
|
|
My lock was caused by the system crashing and not by a hanging process. To resolve this I simply renamed the file then copied it back to it's original name and location. Using a linux shell that would be...
|
|||
|
|
|
As Seun Osewa has said, sometimes a zombie process will sit in the terminal with a lock aquired, even if you don't think it possible. Your script runs, crashes, and you go back to the prompt, but there's a zombie process spawned somewhere by a library call, and that process has the lock. Closing the terminal you were in (on OSX) might work. Rebooting will work. You could look for "python" processes (for example) that are not doing anything, and kill them. |
|||
|
|
|
Before going down the reboot option, it is worthwhile to see if you can find the user of the sqlite database. e.g. on Linux use fuser prompt> fuser database.db or prompt> fuser database.db-journal In my case I got the following response: philip 3556 4700 0 10:24 pts/3 00:00:01 /usr/bin/python manage.py shell Which showed that I had another python program with pid 3556 (manage.py) using the database |
|||
|
|
|
you can try this: It looks like when you add ;, sqlite'll look for further command. |
|||
|
|
|
One common reason for getting this exception is when you are trying to do a write operation while still holding resources for a read operation. For example, if you SELECT from a table, and then try to UPDATE something you've selected without closing your ResultSet first. |
|||
|
|
|
if you want to remove database is locked error then follow these steps
|
|||
|
|
|
This link solve the problem. : When Sqlite gives : Database locked error It solved my problem may be useful to you. And you can use begin transaction and end transaction to not make database locked in future. |
|||
|
|
|
Same thing happened to me but restarting the computer worked. |
|||||
|