TableSupport Parameter (Connect-Couchbase Cmdlet)
How much effort the provider will put into discovering tables on the Couchbase server.
Syntax
Connect-Couchbase -TableSupport string
Possible Values
Full, Basic, NoneData Type
cstr
Default Value
"Full"
Remarks
The available options are:
Full | The cmdlet will discover the available buckets, and look inside of each of those buckets for child tables. This provides the most flexible way to access nested data, but requires that each bucket on your server have primary indexes. |
Basic | The cmdlet will discover the available buckets, but will not look inside of them for child tables. This is recommended for cases where you either want to reduce the time that schema detection takes, or if your buckets do not have primary indexes. |
None | The cmdlet will only use the schema files found in the Location directory, and will not discover buckets on the server. This option should only be used after you have already created schema files. Using this option without schema files will result in no tables being available. |