码迷,mamicode.com
首页 >  
搜索关键字:postgresql ip连接管理    ( 3125个结果
postgresql远程权限开启
前言:之前只会配置postgresql的指定IP的远程权限,后来一个客户想通过远程连接postgre,想查看数据,但是她的IP经常发生变动,导致我每次都要重新再进行设置,后来终于找到了方法,现做如下记录: 只针对Windows服务 找到pg_hba.conf配置文件,路径一般情况下为postgre安装目录的data目录下C:\Program Files\PostgreSQL\9.3\data打...
分类:数据库   时间:2015-01-07 13:17:19    阅读次数:188
Postgresql 数据在一张表中存在,另一张表不满足完整性的查找
有两张表T1,T2,表结构和数据如下: create table t1 ( id int ); create table t2 ( id int, finished int ); insert into t1 values (1); insert into t1 values (2); insert into t1 values (3); insert into t1 value...
分类:数据库   时间:2015-01-07 13:11:50    阅读次数:164
PostgreSQL 归档出错
Running out of disk space in the pg_xlog directory is a fairly common Postgres problem. This important directory holds the WAL (Write Ahead Log) files. (WAL files contain a record of all changes ma...
分类:数据库   时间:2015-01-06 18:20:49    阅读次数:844
POSTGRESQL同步——SLONY-I配置
来自:http://bbs.chinaunix.net/thread-955564-1-1.html 参考文档 http://bbs.chinaunix.net/viewthr ... page%3D1#pid6997819 http://topic.csdn.net/t/20050617/12/4...
分类:数据库   时间:2015-01-06 15:30:32    阅读次数:389
kali linux 系列教程之metasploit 连接postgresql可能遇见的问题
kali linux 系列教程之metasploit 连接postgresql可能遇见的问题文/玄魂目录kali linux 下metasploit 连接postgresql可能遇见的问题................................ 1前言.......................
分类:数据库   时间:2015-01-06 00:35:49    阅读次数:199
安装 postgresql
有以下三步去完成PostgreSQL 的安装。Download PostgreSQL installer for WindowsInstall PostgreSQLVerify the installationDownload PostgreSQL Installer for WindowsYou ...
分类:数据库   时间:2015-01-05 18:15:31    阅读次数:188
《SQL必知必会》阅读进度
0 阅读计划 [0] 2015/01/04 ch01~10 [1] 2015/01/05 ch10~22又,补充了这个基础知识后要尽快切换到PostgreSQL (9.4)的基础SQL部分,极早练习实际数据库的操作.----------------------------------------.....
分类:数据库   时间:2015-01-05 01:50:48    阅读次数:187
postgresql 入门(含java、scala连接代码)
1、下载安装包官网:http://www.postgresql.org/download/ 按自己需求,下载安装包,我下载的windows版32位的。http://get.enterprisedb.com/postgresql/postgresql-9.4.0-1-windows.exe2、安装执行...
分类:数据库   时间:2015-01-04 16:58:49    阅读次数:264
PostgreSQL中查找最大连续性字段
一、建表 lihao=#create table tb (id int,pid int,name varchar); lihao=#INSERT INTO tb VALUES (1, 0, ‘广东省‘); lihao=#INSERT INTO tb VALUES (2, 0, ‘浙江省‘); lihao=#INSERT INTO tb VALUES (3, 2, ‘衢州...
分类:数据库   时间:2015-01-03 17:28:39    阅读次数:254
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!