Hi Bharad,
Have you compared CMS DB copies of both your repositories. I would suggest you to do table row level comparison for the table named CMS_InfoObjects5 in CMS database.
also Execute the below query in Query builder related to report schedules to narrow down what went wrong.
SELECT top 10000 SI_ID, SI_NAME,SI_KIND,SI_SCHEDULEINFO.SI_SCHEDULE_TYPE,
SI_SCHEDULEINFO.SI_SUBMITTER,SI_SCHEDULEINFO.SI_STARTTIME,SI_STARTTIME,
SI_ENDTIME,SI_NEXTRUNTIME,SI_SCHEDULE_STATUS,SI_STATUSINFO
FROM CI_INFOOBJECTS WHERE SI_SCHEDULE_STATUS = 9
In the resultset
values for SI_SCHEDULE_TYPE gives the Schedule frequency.
SI_SCHEDULE_TYPE=0 – Once: the report is run once only
SI_SCHEDULE_TYPE=1 – Hourly: the report is run hourly.
SI_SCHEDULE_TYPE=2 – Daily: the report is run daily.
SI_SCHEDULE_TYPE=3 – Weekly: the report is run weekly.
SI_SCHEDULE_TYPE=4 – Monthly: the report is run monthly.
SI_SCHEDULE_TYPE=5 – NthDay: the report is run on the nth day of the month.
SI_SCHEDULE_TYPE=6 – 1stMonday: the report will run on the first monday of every month.
SI_SCHEDULE_TYPE=7 – LastDay: the report will run on the last day of the month.
SI_SCHEDULE_TYPE=8 – Calendar: the report will run based on calendar templates.
SI_SCHEDULE_TYPE=9 – Run schedule based on calendar plugin object templates.
values for SI_SCHEDULE_STATUS gives the current status of the schedule
SI_SCHEDULE_STATUS=0 – Running
SI_SCHEDULE_STATUS=1 – Success
SI_SCHEDULE_STATUS=3 – Failure
SI_SCHEDULE_STATUS=8 – Paused
SI_SCHEDULE_STATUS=9 – Pending
Let me know if this helps.
Regards
Mani