0

I am trying to query Couchbase data from Microsoft Office Excel using Simba ODBC Driver.

Querying Table using below statement works:

enter image description here

However, when I tried to query views it doesn't work, kept saying "Cannot create table ..."

enter image description here

Here's one of the many statements I tried to query above View

SELECT *
FROM Couchbase.default.`travel-sample`.`_design/dev_test` .`test_view` `travel-sample`

Is my syntax wrong? Or is it not possible at all?

friend
  • 1,909
  • 2
  • 21
  • 28

1 Answers1

1

For the benefits of other readers: this question was answered in the comments to this blog post. Querying views is currently not supported by the driver because N1QL doesn't have access to map-reduce views.

Alex Popov
  • 3,726
  • 1
  • 17
  • 20