var fDesc=new Array(); fDesc[0] = "- The Task Assistant allows you to schedule and execute tasks like model copies, downloads, model deletes or migrations as background tasks.

This helps to balance the workload and resource consumption of your encyclopaedia by executing low priority or long running tasks overnight.

- It is available for all of the CA Gen Host and CSE platforms.

It can manage tasks on multiple encyclopaedias, either on the same machine or distributed across multiple machines.

- User defined tasks can be defined to schedule customised tasks, like database housekeeping."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }