pgloader 是一个支持多种数据源迁移到pg 数据库的工具,高性能,使用灵活同时作者 也提供了docker 版本的镜像,今年3月份使用此工具的时候,发现好久都没更新了,但是 最近作者有了新版本的发布,同时支持pg to pg,修复了部分bug,同时也有了新的官方 文档。 同时作者提出的Conti ...
分类:
其他好文 时间:
2019-06-12 10:41:46
阅读次数:
244
转自:https://pgloader.io/blog/continuous-migration/ After having been involved in many migration projects over the last 10 years, I decided to publish t ...
分类:
其他好文 时间:
2019-03-05 11:36:40
阅读次数:
174
MySQL 和 PostgreSQL 导入数据功能对比。...
分类:
数据库 时间:
2014-05-23 07:54:15
阅读次数:
380
使用Memcached、Spring AOP构建数据库前端缓存框架,代码下载地址:http://www.zuidaima.com/share/1781569917635584.htm...
分类:
数据库 时间:
2014-05-22 12:35:20
阅读次数:
422
#include
void main(){
const int count = 5;//定义数量
struct student{
char name[80];
float math,eng;
float aver;
}stu[count],temp;
//输入
for (int i = 0; i
scanf("%s%f%f", stu[i].name, &stu[i].m...
分类:
编程语言 时间:
2014-05-22 11:21:15
阅读次数:
312
SQL> select * from v$version;
BANNER
--------------------------------------------------------------------------------
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
...
分类:
数据库 时间:
2014-05-22 10:00:09
阅读次数:
434
背景: 测试部门做压力测试, 结果没压多久,就出现OutOfMemory. 原因查找,通过监控工具,发现StandardSession(org.apache.catalina.session.StandardSession)对象不断增长,毫无疑问,肯定是在不断创建Session对象.备注:一般做压力测试,每次请求都不会指定JESSESIONID值,导致Web容器认为每次请求都是新的请求,于是创建...
分类:
其他好文 时间:
2014-05-22 09:24:28
阅读次数:
438
在虚拟机上测评了下MySQL和PostgreSQL的各种LOADFILE方式以及时间。因为是虚拟机上的测评,所以时间只做参考,不要太较真,看看就好了。MySQL工具:1.自带mysqlimport工具。2.命令行loaddatainfile...3.利用mysql-connector-pythonDriver来写的脚本。PostgreSQL工具:1.pgloader..
分类:
数据库 时间:
2014-05-20 18:49:28
阅读次数:
447