sqlite3 - How to migrate from Sqlite to Couchbase? -


i have database in sqlite , want data migrated couchbase bucket. there tool or easy method task?

the simple answer export relational data commma separated value (csv) file , import them couchbase via cbtransfer tool described in http://www.couchbase.com/binaries/content/assets/us/product/couchbase-server-4.0/moving_from_relational_to_nosql_couchbase_2016.pdf.

the more realistic answer is: you'll need write algorithm migration yourself. reason using couchbase should not use relational tables are, design more complex data structures, using arrays , nested data, thereby getting rid of of tables , joins of relational model. mapping relational cb specific database design , can realized algorithm of own. you'll need access methods both relational , cb database anyway, shouldn't difficult.


Comments

Popular posts from this blog

java - nested exception is org.hibernate.exception.SQLGrammarException: could not extract ResultSet Hibernate+SpringMVC -

sql - Postgresql tables exists, but getting "relation does not exist" when querying -

asp.net mvc - breakpoint on javascript in CSHTML? -