Hola que tal, necesito crear un procedure o algo parecido que me haga:
truncate table sunarp.est_rep_remob;
truncate table sunarp.est_rep_remo;
truncate table sunarp.base;
truncate table sunarp.est_sample;
intente con:
/* -------------------------------------- */
create or replace PROCEDURE sp_limpiar_tablas_rpv is
begin
truncate table est_rep_remob;
truncate table est_rep_remo;
truncate table base;
truncate table est_sample;
END sp_limpiar_tablas_rpv;
/* --------------------------------------- */
podria hacerse con delete, pero las tablas contiene registros 26,000 aprox que se cargan diariamente y la idea es lanzar un job para ejecute el procedure.
si alguien tiene una idea de como hacerlo gracias.