CouchDB
Once a corrupted document is written to CouchDB it's not completely straightforward how to get it out again. Having such a document in the DB can bring the replication to a grinding halt, for example.
Futon will throw an error if you try to display the document and you won't get to delete it.
Assuming you know the ID here is an example of how to delete the document:
curl http://localhost:5984/mydbname/_all_docs | grep MYDOCID
_all_docs will not try to get the corrupted content of the document but just its meta data,
that's why no error about invalid json is thrown in this case.
Projektseite: http://couchdb.apache.org/
CouchDB-Wiki: http://wiki.apache.org/couchdb/
CouchDB - The definitive guide: http://guide.couchdb.org/
Eine kleine Sammlung mit den wichtigsten REST URLs: http://dready.byethost31.com/index.php/display/view/190
couchdb@stackoverflow: http://stackoverflow.com/questions/tagged/couchdb