Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 21:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×We have a lot of agents running numerous jobs across multiple projects, when the team decide to spin up a new agent it has to be dedicated to the same projects, plans, and environments as the last one. This is a long painful process as the list is exceptionally long. Has anyone got an SQL script or offer some advice on how to develop one to copy the dedications from one to the other?
Thanks
Community moderators have prevented the ability to post new answers.
Agent's table name is queue.
Agent assignments' table name is agent_assignment.
Query below shows all assignments with corresponding agent
select * from agent_assignment ags inner join queue q on ags.executor_id=q.queue_id and ags.executor_type = 'AGENT';
Hope this information is enough to build a query to reassign one agent's plans to another one
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.