数据库
首页 > 数据库> > db2分区相关操作

db2分区相关操作

作者:互联网

删除指定日期分区表

-- t_log={data_dt, content} ,part20220101=分区名称
-- 分离分区
alter table t_log detach partition part20220101 into t_log_20220101;
-- 删除分离出来的表
drop table t_log_20220101;
-- 查看分区
select * from syscat.datapartition where tabname = 't_log';

标签:log,--,分区,part20220101,20220101,table,操作,db2
来源: https://www.cnblogs.com/springff/p/16196952.html