项目组要出表结构的文档,手写太麻烦,想用slq脚本导出一份。
--查询所有的表字段信息(带表名)
select (select relname||'--'||(select description from pg_description where objoid=oid and objsubid=0...
分类:
数据库 时间:
2014-11-21 12:34:08
阅读次数:
629
[pg@h1 ~]$ vacuumdb --freeze template0
vacuumdb: could not connect to database template0: FATAL: database "template0" is not currently accepting connections
[pg@h1 ~]$ psql template0
psql: FATAL: da...
分类:
其他好文 时间:
2014-11-19 01:58:54
阅读次数:
234
函数级耗时剖析。gprof不会说谎,仔细考虑下函数的实现细节。准备工作对单文件simulator.cpp编译编译:g++-g-pgsimulator.cpp -o simulator.o链接:g++ -pg simulator.o -o simulator对于使用CMakeLists.txt的工程a...
分类:
其他好文 时间:
2014-11-17 21:01:47
阅读次数:
201
删除数据库 sudo -u postgres dropdb $DB_NAME 导出数据库 pg_dump -h $DB_HOST -U $DB_USER --clean --schema=$DB_SCHEMA -d $DB_NAME > $DUMP_FILE_NAME 导入数据库 psql -U $...
分类:
数据库 时间:
2014-11-14 15:29:48
阅读次数:
245
一、查看哪些用户在链接数据库select * from pg_stat_activity ; 这里的pg_stat_activity其实是一个视图,它的定义可以在postgres这个数据库里面的视图部分找到。二、杀死进程 现在我们找出所有连接到数据库的进程了,那么如何去杀死那些IDEL的进程从而释放...
分类:
数据库 时间:
2014-11-14 13:59:42
阅读次数:
363
错误及现象Error: pg_config executable not found.Downloading/unpacking psycopg2 Downloading psycopg2-2.5.4.tar.gz (682kB): 682kB downloaded Running setup......
分类:
其他好文 时间:
2014-11-12 19:34:43
阅读次数:
1180
转自http://blog.csdn.net/beiigang/article/details/39099575pg的复制、高可用、负载均衡相关集群,这儿写个概要备查。pg有以下各种基于复制的集群方案,多数配过,有的当时没有整理。现在网上也有很多这些集群配置的文档,在这篇文档后找完备点的集中一下备档...
分类:
数据库 时间:
2014-11-08 11:49:24
阅读次数:
235
磁盘空间不足的情况下,利用命名或者匿名管道迁移和导入数据;需要注意命名管道的权限问题。
0. Name PIP 0
[pg@h1 ~]$ psql gtlions -ac "select 't3' tab,count(*) from t3 union all select 't4',count(*) from t4;"
select 't3' tab,count(*) from t3 uni...
分类:
其他好文 时间:
2014-11-06 11:09:31
阅读次数:
206
target="_black"新窗口打开,且打开第二个链接出来的页面覆盖第一个页面.ui-pg-table td[dir="ltr"]{*width:94px;}.ui-pg-table input[type="text"],.ui-pg-table input[type="password"],....
分类:
Web程序 时间:
2014-11-04 12:55:45
阅读次数:
222
ubuntu上跑python连接pg,报错 ImportError: No module named psycopg2
root@pgproxy1:~# python /home/zxw/PGWriterTest_m.py
Traceback (most recent call last):
File "/home/zxw/PGWriterTest_m.py", line 4...
分类:
编程语言 时间:
2014-11-03 19:29:25
阅读次数:
2370