dnet-applications/apps/dhp-broker-application/src/main/resources/sql/updateStats.sql

6 lines
214 B
MySQL
Raw Normal View History

2020-09-17 15:50:51 +02:00
begin;
delete from oa_datasource_stats;
insert into oa_datasource_stats (id, name, type, topic, size) select id, name, type, topic, size from oa_datasource_stats_temp;
drop table oa_datasource_stats_temp;
commit;