摘要:
delete误删除恢复 1.查询恢复哪个时间点的数据select count(1) from t_imp_zhujian as of timestamp to_timestamp('2018-06-12 15:20:15','yyyy-mm-dd hh24:mi:ss'); 2.启用行移动功能alt 阅读全文
摘要:
select to_char(7630.376,'fm9999000.00999') from dual --7630.376 okunion all select to_char( 0.376 ,'fm9999000.00999') from dual --000.376union all sel 阅读全文
摘要:
--建表 partition by range (STAT_TIME) ( partition P_MAX values less than (MAXVALUE) ); --历史数据 alter table 按日分区的表名 split partition p_max at (20150101) in 阅读全文