摘要:
1. 打开防火墙 netsh advfirewall set allprofiles state on 2. 关闭防火墙 netsh advfirewall set allprofiles state off 1. 删除 (delete) 所有 “名称” 匹配的出入站规则 netsh advfire 阅读全文
摘要:
查询当前数据库下所有表的数据量,后来改成了通过sql拼接sql语句来查询。 SELECT concat('select ''',tablename,''' as table_name,count(1) as sum from ',tablename,' union all') FROM pg_tab 阅读全文