Inside Activate
Connectors
Frequently Asked Questions (FAQ)
6 min
how many connectors can run at once? there’s no hard limit — connectors are lightweight and can run concurrently, limited only by available server and sql resources stagger large imports to avoid database contention what happens if the schema changes? activate validates schema on every run if a mismatch is detected, the connector will stop with an error always append new columns and never modify or reorder existing ones can i connect to cloud apis like workday or servicenow? yes — use the script provider to call rest or soap apis and parse responses you can also use stored procedures or powershell integrations to stage data first how do i stop mass deletions from a bad import? set protective limits in your workflow \<processimport> \<maxdelete>100\</maxdelete> \<maxchanges>500\</maxchanges> \</processimport> if exceeded, the connector aborts and logs an error how can i see what changed in an import? query the connector’s history table or view change logs in the activate ui each row includes timestamps, action types, and key values can a single connector update multiple object types? yes, but it’s discouraged use separate connectors per data domain (users, roles, tickets) to simplify troubleshooting and scaling why are some updates not applying? check the key field aligns with your schema definition processimport didn’t exceed limits change handler events exist for the detected actions the target objects (e g , roles, users) actually exist or are creatable can connectors trigger each other? yes, through the run workflow step — one connector can launch another when processing completes use sparingly to avoid circular dependencies is there a way to view connector performance? yes — monitor run duration, row counts, and error rates in the connector dashboard or sql logs tracking runtime trends helps identify performance regressions early