This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2018-09-27 16:21:05 +08:00

8 lines
249 B
SQL

declare job_id pls_integer;
begin
sys.dbms_job.submit(job => job_id ,
what => 'pro_driver_add_Partition;',
next_date => sysdate,
interval => 'trunc(sysdate)+7+1/24');
commit;
end;