Skip to main content
Skip table of contents

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. 

SQL
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:

SQL
CALL "SYSADMIN.deployModularConnector"(
    "name" => '<modular connector name>',
    "deploy" => FALSE
);;
Some modular connectors depend on others and require the base connectors to be deployed first. If the base connector is not deployed, the Server will fail to deploy the dependent connector.
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.