drop table if exists TABLE_h;
create table TABLE_h as         
select *, 'create' as action 
        , now() as save_dt
        , current_user as save_by
from TABLE;
