码迷,mamicode.com
首页 >  
搜索关键字:postgresql standby    ( 3587个结果
Entity Framework 6连接Postgresql、SQLite、LocalDB的注意事项和配置文件
PostgresqlPostgresql支持Code First的方式自动生成表,不过默认的模式是dbo而不是public,而且还可以自动生成自增主键。 SQLiteSQLite不支持Code First的方式自动生成表,所以可能会报找不到相应的ta...
分类:数据库   时间:2014-09-03 01:30:05    阅读次数:389
Apache负载均衡设置方法: mod_proxy
一般来说,负载均衡就是将客户端的请求分流给后端的各个真实服务器,达到负载均衡的目的。还有一种方式是用两台服务器,一台作为主服务器(Master),另一台作为热备份(Hot Standby),请求全部分给主服务器,在主服务器当机时,立即切换到备份服务器,以提高系统的整体可第一次看到这个标题时我也很惊讶...
分类:其他好文   时间:2014-09-02 14:02:54    阅读次数:286
PostgreSQL对象重组工具【pg_reorg】
?? Description: pg_reorg is an utility program toreorganize tables in PostgreSQL databases. Unlike clusterdb, it doesn't blockany selections and updates during reorganization. You can choose o...
分类:数据库   时间:2014-09-01 17:47:53    阅读次数:402
PostgreSQL data同步工具【pg_rewind】
pg_rewind is a tool for synchronizing a PostgreSQL data directory with another PostgreSQL data directory that was forked from the first one. The result is equivalent to rsyncing the first data directory with the second one. The advantage of pg_rewind over ...
分类:数据库   时间:2014-09-01 17:44:53    阅读次数:495
Postgresql - Pattern Matching
There are three separate approaches to pattern matching provided by?PostgreSQL: the traditional?SQL?LIKE?operator, the more recent?SIMILAR TO?operator (added in SQL:1999), and?POSIX-style r...
分类:数据库   时间:2014-09-01 12:44:23    阅读次数:380
Oracle 11gR2 Duplicate target database for standby
1. copy standby control file from primary db to standby db and rename the file name and location in stdby db same as the primary db2. copy password fi...
分类:数据库   时间:2014-08-31 15:48:51    阅读次数:382
待机时间问题处理
我们这边3716mv300和3716cv100 SDK用的是HiSTBAndroidV400R001C00SPC053,现在3716mv300 android待机时数码管显示的时间总是09:58,3716C android待机时间通过修改HiSTBAndroidV400R001C00SPC053/frameworks/base/core/jni/standby_wakeup.c里面HI_Standby_Wakeup这个函数之后,待机可以显示当前时间,但是3716mv300待机时没有跑到HI_Standby_...
分类:其他好文   时间:2014-08-29 21:27:38    阅读次数:336
Postgresql LIMIT and OFFSET
LIMIT?and?OFFSET?allow you to retrieve just a portion of the rows that are generated by the rest of the query: SELECTselect_listFROMtable_expression[LIMIT {number| ALL }] [OFFSETnumber] If a lim...
分类:数据库   时间:2014-08-29 16:26:58    阅读次数:387
PostgreSQL数据库备份和恢复(脚本方式)
数据库备份:D:\Program Files\PostgreSQL\9.2\bin> pg_dump -h localhost -U postgres -C --column-inserts -f E:/dbname.sqldbname数据库恢复:D:\Program Files\PostgreSQ...
分类:数据库   时间:2014-08-29 15:53:58    阅读次数:262
配置postgreSQL允许外部连接
配置远 程连接PostgreSQL数据库的步骤很简单,只需要修改 %PostgreSQL_path%/data 目录下的 pg_hba.conf 和 postgresql.conf。一、修改pg_hba.conf:配置对数据库的访问权限添加host all all 192.168.80.1/24 ....
分类:数据库   时间:2014-08-28 16:54:00    阅读次数:453
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!