Need to clear up some unwanted reports from APM db tables as covered in
https://communities.ca.com/message/241986007?et=watches.email.thread Here are some sequence of steps to try before opening a case
Approach #1 : Remove the explicit report from the database tables
1) Run the SQL query --
select * from ts_report_defs; select * from ts_cached_reports;2) Find the row with the report needing to be removed.
Alternative: select * from ts_report_def_param_values where ts_value = 'report1 name';
2) Delete the row with a SQL command something like shown below.
delete from ts_cached_reports where ts_id='nnnnnnn';
Approach #2: Review and remove selected scheduled reports
Review the cron triggers for ANY report running daily or the scheduled time and see which report it corresponds to in ts_report_defs and ts_report_def_param_values.
The information can be found in
qrtz_cron_triggers
qrtz_triggers
qrtz_job_details
The cron trigger format is detailed in
http://www.quartz-scheduler.org/documentation/quartz-1.x/tutorials/crontrigger Approach #3: Clear all tables
This deletes all reports and their scheduling information. It is included here for completeness but is not recommended since the issue may still persist afterwards.
delete from qrtz_cron_triggers;
delete from qrtz_triggers;
delete from qrtz_job_details ;
delete from ts_report_defs;
delete from ts_report_def_param_values;
Then recreate these tables through the GUI