Re: Need help for Couch DB data export

2013-11-22 Thread Andy Wenk
Hi Sreedhar, On 21 November 2013 14:51, Sreedhar P V venkatasridha...@gmail.com wrote: Hi Team, I am using couchdb for one of my projects and need to import the client data in couchdb. I have good experience on RDBMS but not on NoSQL. I need your assistance for the below scenario. To

Re: Need help for Couch DB data export

2013-11-22 Thread Andy Wenk
sorry this has to read: curl -X PUT http://127.0.0.1:5984/testdb/_design/defaulthttp://127.0.0.1:5984/kina/_design/default \ -H content-type: application/json \ -d ’{filters:{ country: function(doc, req) { return \US\ == doc.lang; } } }’ The name kina in the

Re: Need help for Couch DB data export

2013-11-22 Thread Robert Newson
_bulk_docs requires a different format input than _all_docs. You can't pipe one to the other. On 22 Nov 2013 21:22, Andy Wenk a...@nms.de wrote: Hi Sreedhar, On 21 November 2013 14:51, Sreedhar P V venkatasridha...@gmail.com wrote: Hi Team, I am using couchdb for one of my projects