Modular Connectors Management
You are looking at an older version of the documentation. The latest version is found here.
SYSADMIN.deployModularConnector
This procedure deploys a modular connector to the Server, which is a mandatory step before creating a modular connector data source.
CALL "SYSADMIN.deployModularConnector"(
"name" => '<modular connector name>',
"deploy" => TRUE
);;
It supports the $NOFAIL
option, which prevents throwing error messages in case of failure. For more details, please see OPTION Clause.
If you need to undeploy the modular connector, just set deploy
to FALSE
:
CALL "SYSADMIN.deployModularConnector"(
"name" => '<modular connector name>',
"deploy" => FALSE
);;