02:34:28 is there any simple way to run search across all the tables in couchdb? 14:10:47 mentax: tables? what is tables? :) 14:10:57 I assume u mean all the DBs? 14:11:13 If so, not without writing a script of some sort. 14:11:22 yes, seaerch in all dbs 14:11:42 fairly easy with bash I guess 14:13:54 here's an example of using a bash for loop to get all DB names and run a DELETE command on each, but you could replace the DELETE with a GET on a view or whatnot: 14:14:13 for i in `curl -su admin:CouCHpa22w0rd http://localhost:15984/_all_dbs | jq . | sed 's/"//g' | sed 's/,/ /g' | sed 's/]//g' | sed 's/\//%2F/g' | sed 's/_users//g' | sed 's/_replicator//g' | sed 's/\[//g'` ; do curl -su admin:CouCHpa22w0rd http://localhost:15984/$i -X DELETE | jq .; done 14:14:47 I'm sure that could be improved markedly without all the chained sed commands lol.