最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

【openGauss】openGauss清空表在回收站记录,彻底释放磁盘空间

运维笔记admin1浏览0评论

【openGauss】openGauss清空表在回收站记录,彻底释放磁盘空间

  • 问题描述
  • 一、查参数
  • 二、设置参数default_transaction_read_only参数值为off
  • 三、truncate清空一些不常用的但占用磁盘空间很大的表,比如日志表
  • 四、openGauss清空表在回收站记录,彻底释放磁盘空间
    • 4.1、针对truncate
    • 4.2、针对drop
    • 4.3、一把梭
  • 五、其他回收站相关操作


问题描述

数据库只读模式,只能查询,做其他dml操作都报错:
ERROR: cannot execute XXXXXX in a read-only transaction

一、查参数

select name,setting,unit,context from pg_settings where name ~* 'read_only';
name	setting	unit	context
default_transaction_read_only	on		user
transaction_read_only	on		user

二、设置参数default_transaction_read_only参数值为off

set default_transaction_read_only = off;

三、truncate清空一些不常用的但占用磁盘空间很大的表,比如日志表

truncate tzq_log_t;  -- 日志表

四、openGauss清空表在回收站记录,彻底释放磁盘空间

4.1、针对truncate

--  针对truncate
select concat('PURGE TABLE ',rcyoriginname,';')  from gs_recyclebin 
 where rcyoriginname in(
select -- t2.nspname,
       t1.relname as tablename_in_recyclebin
from pg_class t1
join pg_namespace t2 on (t1.relnamespace=t2.oid)
where t1.relkind = 'r'
   and t1.relname ~* '^bin'
   and t2.nspname = '模式名'
order by 1
);

4.2、针对drop

-- 针对drop
select concat('PURGE TABLE ',rcyoriginname,';') from gs_recyclebin where rcyname in(
select --t2.nspname,
       t1.relname as tablename_in_recyclebin
from pg_class t1
join pg_namespace t2 on (t1.relnamespace=t2.oid)
where t1.relkind = 'r'
      and t1.relname ~* '^bin'
	  and t2.nspname = '模式名'
order by 1);

4.3、一把梭

-- 清空当前用户的回收站
PURGE RECYCLEBIN;
-- 清空指定用户的回收站(需要有相应权限)
PURGE DBA_RECYCLEBIN USER username;

五、其他回收站相关操作

/* 查回收站参数 */
select name,setting,unit,context from pg_settings where name ~* 'bin';
/* 查回收站对象 */
select * from my_recyclebin;
--  truncate \ drop 
/* 恢复对象 */
TIMECAPSULE TABLE "BIN$4BE24EB5475$315BC00A480==$0" TO BEFORE TRUNCATE;
发布评论

评论列表(0)

  1. 暂无评论