Crystalboy1
Programmer
hi there.
i want to create a stored procedure, which will drop a table A frist, then will create the table A again wid fresh data e,g
create stored procedure ABC as
begin
execute immediate 'drop table A';
create table A as
select * from longQuery....
;
end
now i want to sechedule a job to exec this stored procedure ? is it possible if not, whats the alternative...