setVLDBConfiguration

Sets the configuration parameters for a VLDB.

Request

<setVLDBConfiguration>
   <vldbNumThreads/>
   <dataBasePath/>
   <autoLoadVLDB/>
</setVLDBConfiguration/>

Reply

<setVLDBConfiguration>
   <result value=" ">
      <description/>
   <result>
</setVLDBConfiguration>

Elements

vldbNumThreads

(Optional) Specifies that the number of threads the VLDB should use is modified.

dataBasePath

(Optional) Specifies the new directory to move the VLDB database to.

autoLoadVLDB

(Optional) Specifies whether the state of autoloading is modified:

  • true (default)
  • false
result

Specifies an error value or 0 (for no error).

description

Specifies a text description of the result.

Example

The following example sets the number of threads to two and turns on the auto-load option:

<nssRequest>
   <vldb>
      <setVLDBConfiguration>
         <numThreads>2</numThreads>
         <autoLoadVLDB>true</autoLoadVLDB>
      </setVLDBConfiguration>
   </vldb>
</nssRequest>

A nssReply packet to the set VLDB configuration command follows:

<nssReply>
   <vldb>
      <setVLDBConfiguration>
         <result value="0">
            <description/>success</description>
         </result>
      </setVLDBConfiguration>
   </vldb>

   <result value="0">
      <description/>zOK</description>
   </result>
</nssReply>