I require setup for two schedules:
- For the monthly load, it should execute once a month on the first Sunday.
- For the weekly load, it should execute every week, but not on the first Sunday of the month.
Currently, I'm utilizing this CRON job for the monthly load:
0 0 7 ? * 1#1
I need assistance in configuring the CRON job for the weekly load without causing conflicts with the monthly schedule.