逻辑备份还原
LAB01-一致性数据库备份恢复
STEP1、在test数据库中创建表t001并插入100条记录
test=# create table t001(id int,data int);
CREATE TABLE
test=# insert into t001 select generate_series(1,100),random();
INSERT 0 100
test=# select count(*) from t001;
count
-------
100