码迷,mamicode.com
首页 >  
搜索关键字:postgis postgresql    ( 3184个结果
PostgreSQL的索引选型
PostgreSQL里面给全文检索或者模糊查询加索引提速的时候,一般会有两个选项,一个是GIST类型,一个是GIN类型,官网给出的参考如下:There are substantial performance differences between the two index types, so it...
分类:数据库   时间:2015-01-22 12:39:56    阅读次数:174
PostgreSQL存储过程返回数据集实例
这里用一个实例来演示PostgreSQL存储过程如何返回数据集。1 首先准备数据表//member_categorycreate table member_category(id serial, name text, discount_rate real, base_integral integer...
分类:数据库   时间:2015-01-22 11:01:20    阅读次数:183
PostgreSQL存储过程初探
什么是存储过程, 百度百科是这么定义的:存储过程(Stored Procedure)是在大型数据库系统中,一组为了完成特定功能的SQL 语句集,存储在数据库中经过第一次编译后再次调用不需要再次编译,用户通过指定存储过程的名字并给出参数(如果该存储过程带有参数)来执行它。存储过程是 数据库中的一个重要...
分类:数据库   时间:2015-01-22 10:49:06    阅读次数:185
linux shell中读写操作mysql数据库
本文介绍了如何在shell中读写mysql数据库。主要介绍了如何在shell 中连接mysql数据库,如何在shell中创建数据库,创建表,插入csv文件,读取mysql数据库,导出mysql数据库为xml或html文件, 并分析了核心语句。本文介绍的方法适用于PostgreSQL ,相对mysql...
分类:数据库   时间:2015-01-20 17:05:09    阅读次数:249
Kali之Metasploit Framework环境配置
运行Metasploit Framework依照Kali Linux网络服务策略,Kali没有自动启动的网络服务,包括数据库服务在内.所以为了让Metasploit以支持数据库的方式运行有些必要的步骤.启动Kali的PostgreSQL服务Metasploit 使用PostgreSQL作为数据库,所...
分类:Web程序   时间:2015-01-17 16:24:02    阅读次数:203
PostgreSQL存储过程返回数据集实例
这里用一个实例来演示PostgreSQL存储过程如何返回数据集. 1 首先准备数据表 //member_category create table member_category(id serial, name text, discount_rate real, base_integral integer); alter table member_category add primary ke...
分类:数据库   时间:2015-01-16 19:17:15    阅读次数:242
用eclipse开发和调试postgresql-8.4.1
按照书本《PostgreSQL数据库内核分析》根据第一章讲解的linux下,编译 安装;不同的是libreadline5-dev版本没有了,就用新的版本代替;我的ubuntu 14 所以必须重新安装gcc-4.7版本,超过4.7版本编译会报错。./configuregmakesugmake inst...
分类:数据库   时间:2015-01-16 09:52:32    阅读次数:268
linux 搭建unixODBC ,并对接 PostgreSQL 9.3.4
环境:suse 11 ,64位的操作系统unixODBC 版本:2.3.2PostgreSQL 9.3.41 编译安装 unixODBC下载 unixODBC :http://www.unixodbc.org/download.html解压编译tar -zxvf unixODBC-2.3.2.tar...
分类:数据库   时间:2015-01-15 17:55:08    阅读次数:270
Postgresql 9.4.0 win7 x64 解压版安装步骤
一、下载解压 1,下载postgresql-9.4.0-1-windows-x64-binaries.zip 2,解压postgresql-9.4.0-1-windows-x64-binaries.zip 到E: 二、添加用户 1,添加windows用户,用于启动PostgreSQL的windows服务 net user postgres pgsqlpw /add /e...
分类:数据库   时间:2015-01-15 11:01:11    阅读次数:195
Postgresql 9.4.0-1 x64 win7 解压版安装步骤
一、下载解压 1,下载postgresql-9.4.0-1-windows-x64-binaries.zip 2,解压postgresql-9.4.0-1-windows-x64-binaries.zip 到E:二、添加用户 1,添加windows用户,用于启动PostgreSQL的windows服务 net user postgres pgsqlpw /add /expires:n...
分类:数据库   时间:2015-01-15 11:00:57    阅读次数:211
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!