Ver Mensaje Individual
  #1 (permalink)  
Antiguo 07/01/2009, 11:05
raztafari123
 
Fecha de Ingreso: febrero-2006
Mensajes: 44
Antigüedad: 18 años, 8 meses
Puntos: 0
ayuda con procedure + truncate table

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.