Previous Page | Next Page

Server Control (IServer Interface)

Stop

Shuts down the SAS Metadata Server.

Category: Server control methods


Syntax

rc=Stop(options);

Parameter Type Direction Description
options C in No options are supported at this time.


Details

A return code of 0 indicates that the SAS Metadata Server was successfully stopped. A return code other than 0 indicates that the SAS Metadata Server failed to stop.

The Stop method is available only in the standard interface.

A user must have administrative user status on the SAS Metadata Server to stop the server.


Example

<!--Stops the metadata server-->
options=''

rc=serverObject.Stop(options);

Previous Page | Next Page | Top of Page