sip_script_limpeza_mysql.sql 485 Bytes
/*
SCRIPT DE LIMPEZA DE DADOS DE AUDITORIA E LOG DA BASE DE DADOS DO SIP - SEI 2.6.0 (MySQL)
*/

/* Reconstrui as tabelas de log e auditoria e tabelas sequenciais correspondentes */
truncate table infra_auditoria;
truncate table seq_infra_auditoria;

truncate table infra_log;
truncate table seq_infra_log;

truncate table login;

/********************************************************************************************************************************************************/