I am trying to update UIM 20.4 CU6 and use the new cdm mcs template. Template is failing to import.
20.4CU6
You need to download from the nimsoft archive cdm 6.84-MC
Once you have downloaded cdm 6.84-mc into you archive, try to deploy the template again. If it still fails, we will use the following queries to delete all the cdm profiles from the database. You will need to setup the mcs cdm templates again.
Please use your database management studio as I have seen this not work using UIM SLM.
delete from SSRV2PackageTemplate where template in (select templateid from ssrv2template where probe = 'cdm');
delete from ssrv2container where template in (select templateid from ssrv2template where probe = 'cdm');
delete from ssrv2removal where template in (select templateid from ssrv2template where probe = 'cdm');
delete from ssrv2configvalue where field in (select id from ssrv2field where template in (select templateid from ssrv2template where probe = 'cdm'));
delete from ssrv2field where template in (select templateid from ssrv2template where probe = 'cdm' );
delete from ssrv2profile where template in (select templateid from ssrv2template where probe = 'cdm');
delete from ssrv2template where templateid in (select templateid from ssrv2template where probe = 'cdm');
delete from SSRV2ProbeTemplatesPackage where probe_name = 'cdm'
delete from SSRV2ProbeTemplateUpgrade where probe_name = 'cdm'
Run it a second time to make sure all blank.
Then deploy the cdm-mcs-template again.
You should now see the new mcs profiles.