create table if not exists 新表 (like 旧表 including indexes including comments including defaults); 1. 删除表: drop table if exists "t_template" cascade; 1. 查询注释: SELECT a.attname as "字段名", col_description(a.attrelid,a.attnum) as "注释", concat_ws('',t.typname,SUBSTRING(fo...
XLogMiner是从PostgreSQL的WAL(write ahead logs)日志中解析出执行的SQL语句的工具,并能生成出对应的undo SQL语句。 配置要求 需要将数据库日志级别配置为logical模式, 并将表设置为full模式。例如,下面的语句将表t1设置为full模式: alter table t1 replica identity FULL; PG版本支持 目前主要是在PostgreSQL 9.5.x...