PostgreSQL
文章平均质量分 66
豆蛙蛙
I'm proud of the old one,but I know I can do better! WORKING ON A BETTER VERSION OF MYSELF!
展开
-
在PostgreSQL上安装TPC-H(其他数据库也适用)
1、下载tpch 在这个网站下载: https://github.com/electrum/tpch-dbgen 解压: unzip tpch_2_16_0v1.zip2、安装tpch $cd tpch_2_17_0/dbgen $vim makefile.suite 更改其中参数: CC = gcc DATABASE =SQ原创 2016-04-14 11:16:49 · 2968 阅读 · 0 评论 -
Postgresql 9.5.0源码安装
下载PostgreSQL 源码包 #wget http://ftp.postgresql.org/pub/source/v9.5.0/postgresql-9.5.0.tar.bz2解压源码包 # tar xjf postgresql-9.5.0.tar.bz2进入解压后的目录 # cd postgresql-9.5.0查看INSTALL 文件 INSTALL 文件中Short V转载 2016-04-13 17:17:13 · 1463 阅读 · 0 评论 -
PostgreSQL ./configure问题
PostgreSQL源码安装时候第一步 ./configure# ./configure –prefix=/usr/local/postgres-9.3.5 –with-perl –with-tcl –with-python –with-openssl –with-pam –without-ldap –with-libxml –with-libxslt –enable-thread-safety –原创 2016-04-17 15:29:23 · 2012 阅读 · 0 评论 -
Eclipse编译PostgreSQL 9.5.2
1、环境介绍: 1)PostgreSQL:9.5.2 (版本不限;去官网下载) 2)eclipse:eclipse-cpp-mars-2-linux-gtk-x86_64 (版本不限,因为看到用什么版本的都有,我找的是IDE-linux-C/C++这样一步一步走下去对应的版本;去官网下载) 3)其他的环境因为都装好了,就无所谓版本,make、gcc、g++之类的他叫你装什么就装什么,出问题原创 2016-04-17 15:04:58 · 1601 阅读 · 0 评论 -
用Eclipse追PostgreSQL源码
1、安装编译好的PostgreSQL(见Eclipse编译PostgreSQL 9.2.2)。2、在Eclipse上打开Make Target 视图(Window->Show View->Other->Make->Make Target)。右键本工程,选择New,创建一个名字install。 3、安装: 1)双击install。 2)等待一小会儿,在控制台窗口显示PostgreSQL in原创 2016-04-17 20:52:06 · 2702 阅读 · 0 评论 -
PostgreSQL常用命令
1、连接数据库 到安装目录路径下: cd /home/scidb/postgresql-9.5.0/src/bin/ 用postgres用户连接相应数据库: psql test2、查看数据库 \l 3、查看数据表 \dt原创 2016-04-14 09:27:21 · 399 阅读 · 0 评论