load updall <database> -T <view> -Inline off | Disables inline view indexing for a database when the indexing was enabled by Updall. To disable indexing for a specific view, specify the view name. If you don't specify a view, all views in the database that use inline indexing are disabled.
For example, if you no longer want to use inline view indexing for the By Author view in the sales.nsf database, use the following command to disable it:
load updall sales.nsf -T "By Author -inline off
To enable inline indexing again, use the inline on argument, for example:
load updall sales.nsf -T "By Author -inline on
|
tell inlineindex disable <database> <view> | Temporarily disables inline view indexing in an active database. To disable indexing for one view only, specify the view name.
For example, to temporarily disable inline indexing of theBy Author view in the sales.nsfdatabase:
tell inlineindex disable sales.nsf "By Author
To temporarily disable current inline indexing of any views in the sales.nsfdatabase:
tell inlineindex disable sales.nsf To enable indexing again, use tell inlineindex enable. For example:tell inlineindex enable sales.nsf By Author
|