Service Graph Connector for Microsoft Defender Endpoint - Data migration after upgrade to version 1.2.0SummaryThis KB describes the process for migrating Server (cmdb_ci_server) records to the Computer (cmdb_ci_computer) CI class after upgrading to the 1.2.0 version of Service Graph Connector for Microsoft Defender Endpoint. NOTE: This migration is applicable only when upgrading to Service Graph Connector for Microsoft Defender Endpoint version 1.2.0 from an earlier version. You don’t need to migrate Server (cmdb_ci_server) records for new installations of Service Graph Connector for Microsoft Defender Endpoint v1.2.0.ReleaseUpgrade document for version 1.2.0 of Service Graph Connector for Microsoft Defender Endpoint.InstructionsStep 1: Navigate to Scripts - Background in the navigation tool. Step 2: Run the following query in GLOBAL scope. var gr = new GlideRecord("sys_object_source"); gr.addQuery('name','SG-Defender'); gr.query(); gr.deleteMultiple(); Step 3: Navigate back to Scripts - Background. Step 4: Switch to the sn_defender_integ scope and run the following query. var gr = new GlideRecord("cmdb_ci_server"); gr.addQuery('discovery_source','SG-Defender'); gr.query(); gr.sys_class_name = 'cmdb_ci_computer'; gr.updateMultiple(); Step 5: Verify that all sys_object_source records with Name as SG-Defender are cleared and that all records from the Server [cmdb_ci_server] table with Discovery source SG-Defender are moved to the Computer [cmdb_ci_computer] table. The post-upgrade migration for Service Graph Connector for Microsoft Defender Endpoint version 1.2.0 is now complete.