postgres8.4安装配置:1.安装postgres8.4~$ sudo apt-get install postgresql2.修改超级管理员postgres密码:以系统用户运行psql~$ sudo -u postgres psql postgres修改postgres密码(123456)p...
分类:
系统相关 时间:
2015-01-27 13:03:11
阅读次数:
302
一、下载解压
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
一、下载解压
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
通过oracle的to_char函数转换 想要的数据格式
在oracle中to_char函数应用
Postgres 格式化函数提供一套有效的工具用于把各种数据类型(日期/时间,int,float,numeric)转换成格式化的字符串以及反过来从格式化的字符串转换成原始的数据类型。
注意:所有格式化函数的第二个参数是用于转换的模板。
表 5-7. 格式化函数
...
分类:
数据库 时间:
2015-01-13 21:44:52
阅读次数:
705
postgres8.3以后,字段数据之间的默认转换取消了。如果需要进行数据变换的话,在postgres数据库中,我们可以用"::"来进行字段数据的类型转换。实际上"::"是调用CAST函数的。究竟哪些字段之间可以进行数据转换呢? 这个问题只要研究一下cast函数就能够得到答案。cast函数的信息在....
分类:
数据库 时间:
2015-01-13 21:30:21
阅读次数:
284
一。类型转换postgres的类型转换:通常::用来做类型转换,timestamp到date用的比较多select now()::dateselect now()::varchar示例1:日期的varchar计算成dateselect '2012-11-15 16:15:56.377000+08':...
分类:
其他好文 时间:
2015-01-13 21:26:34
阅读次数:
263
1.数据修复最先考虑通过db内做修复,实在不行,在考虑外部应用程序通过jdbc修复.比如一个场景:profile_image_url与enlarge_image_url都是微博用户信息返回的字段. 前者是http://tp2.sinaimg.cn/1928431341/50/5621497131/1...
分类:
其他好文 时间:
2015-01-13 21:25:45
阅读次数:
168
http://www.cnblogs.com/ode/p/postgres_xc_cluster_notes_install_and_configuration.html具体等以后有空再研究
分类:
其他好文 时间:
2015-01-12 10:44:35
阅读次数:
130
Ubuntu安装、使用postgresql数据库$sudoapt-getinstallpostgresql$sudopasswdpostgres(postgres账号的家目录为:/var/lib/postgresql)安装postgres图形化客户端$sudoapt-getinstallpgadmin3(调用直接在命令行里输入pgadmin3即可)postgres的主要配置文件/etc/postgresql/9.1/mai..
分类:
数据库 时间:
2015-01-10 18:29:13
阅读次数:
395
最近因为项目上的需要开始大量使用nginx,因此也想趁机将以前常用的django+apache的架构换成django+nginx。常见的 django webapp 部署方式采用FCGI 或 WSGI的方式部署,在这里主要对CentOS 6.5下采用 Nginx + fastcgi + Python...
分类:
编程语言 时间:
2015-01-08 15:09:19
阅读次数:
432