1、查询schema中各表记录条数,以scstat为例
SELECT relname,n_live_tup FROM pg_stat_user_tables where schemaname='scstat' and n_live_tup>0;
查询出来的记录数可能不准确,查询之前可以先使用ANALYZE命令更新所有表数据
2、查询存储过程或函数内容,以convert_to_utf函数为例
select pg_get_functiondef('convert_to_utf'::regproc);