im new to oracle sql. My problem is my tabe created unnecessary records daily, and i want to execute this query everyday. Is there anyway to do it in oracle sql developers ?
delete * from my_table where my_date > to_char(sysdate+1,'YYYYMMDD');
I have created jobs but it failed. And i tried to create a procedure to call it from a job but a procedure required to declare IN and OUT variables which i dont really need for this task.