Release : 8.x or higher
Component : UIMROB
=========================================================================================
CREATE TABLE Robot_list (
robot varchar(255)
);
BULK INSERT
Robot_list
FROM 'C:\Robots.txt'
-- select * from Robot_list
-- Robot_list contains one line for every robot short hostname, e.g., labtest000599
-- delete from Robot_list where robot is NULL
UPDATE S_QOS_DATA SET CI_METRIC_ID = NULL WHERE ROBOT IN (SELECT * FROM Robot_list)
-- select * from s_qos_data where ci_metric_id is null and ROBOT IN (SELECT * FROM Robot_list)
-- DROP TABLE Robot_List
=========================================================================================