sp_extengine

Description

Starts and stops EJB Server. Displays status information about EJB Server.

Syntax

sp_extengine 'ejb_server', '{ start | stop | status }'

Parameters

ejb_server

the logical name of the EJB Server.

start

starts the EJB Server.

stop

shuts down the EJB Server.

status

displays status information about the EJB Server.

Examples

Example 1

Informs user that the EJB Server SYB_EJB is running:

sp_extengine 'SYB_EJB', 'status'

Enterprise java bean server is up and running.

Example 2

Shuts down the EJB Server SYB_EJB:

sp_extengine 'SYB_EJB', 'stop'

Usage

Permissions

Only a System Administrator can execute sp_extengine.