resume_engine()#

relationalai.api
#resume_engine(name STRING)

A procedure that resumes the specified RelationalAI (RAI) engine if it is suspended. Requires the eng_admin application role.

Parameters#

NameTypeDescription
nameSTRINGThe name of the engine to resume (case-sensitive).

Returns#

A table with the following columns:

ColumnTypeDescription
NAMESTRINGThe name of the engine.
MESSAGESTRINGA message indicating the result of the operation.

Example#

Use the api.resume_engine() procedure to resume a suspended engine:

#-- Resume the engine 'my_rai_engine' if it is suspended.
CALL relationalai.api.resume_engine('my_rai_engine');
/*+-----------------+----------------------+
  | NAME            | MESSAGE              |
  +-----------------+----------------------+
  | my_rai_engine   | resumed successfully |
  +-----------------+----------------------+ */

See Also#