6.1 DMS Configuration Commands

Use the commands in Table 6-2 to configure system properties and to display system properties.


Table 6-2 DMS Configuration Commands

Use this command... To... Use with WLST...

listDMSConfigurationParameters

Display information about one or more DMS configuration parameters.

Online

setDMSConfigurationParameter

Set the value of a DMS configuration parameter.

Online


6.1.1 listDMSConfigurationParameters

Use online.

Description

Displays information about one or more DMS system configuration parameters.

Syntax

listDMSConfigurationParameters([name][, server])

Argument Definition
name

The name of the parameter.

server

The name of the server.


Examples

The following example displays information about all DMS system configuration parameters:

listDMSConfigurationParameters()
 
Server: AdminServer
 
    Parameter Config Value Runtime Value
    DMSClockType DEFAULT DEFAULT
    SensorActivationLevel NORMAL NORMAL
    DMSClockUnits MICROSECONDS MICROSECONDS 

The following example displays information about the DMS system configuration parameter DMSClockUnits:

listDMSConfigurationParameters(name="DMSClockUnits")
 
Server: AdminServer
 
    Parameter Config Value Runtime Value
    DMSClockUnits MICROSECONDS MICROSECONDS

6.1.2 setDMSConfigurationParameter

Use online.

Description

Sets the value of the specified DMS system configuration parameter. This command replaces the existing DMS System Properties, which are now deprecated.

Syntax

setDMSConfigurationParameter(name, value, server)

Argument Definition
name

The name of the parameter.

value

The value of the parameter.

server

The name of the server.


The following table lists the supported configuration parameters, together with their corresponding system property. These system properties are now deprecated.


Configuration Parameter Values Default Deprecated System Property

DMSClockType

default | highres

default

oracle.dms.clock

DMSClockUnits

milliseconds | microseconds | nanoseconds

microseconds

oracle.dms.clock.units

SensorActivationLevel

none | normal | heavy | all

normal

oracle.dms.sensors

DMSPublisherClass

Any string

null (The configuration default)

oracle.dms.publisher.classes

DMSHTTPPort

Any numeric port number

0 (The configuration default)

oracle.dms.httpd.port.start


Examples

The following example shows the DMSClockType set to HIGHRES:

setDMSConfigParameter(name= 'DMSClockType', value='HIGHRES', server='mymanaged')