当前位置: 首页 > news >正文

广东涂料网站建设网站怎么做排名优化

广东涂料网站建设,网站怎么做排名优化,专业品牌网站建设价格,wordpress文章网址采集器前言#xff1a; MySQL数据库和postgresql数据库之间的差异并不多#xff0c;这里的差异指的是对SQL语言的支持两者并不大#xff0c;但底层的东西差异是非常多的#xff0c;例如#xff0c;MySQL的innodb引擎概念#xff0c;数据库用户管理#xff0c;这些和postgresq…前言 MySQL数据库和postgresql数据库之间的差异并不多这里的差异指的是对SQL语言的支持两者并不大但底层的东西差异是非常多的例如MySQL的innodb引擎概念数据库用户管理这些和postgresql相比是完全不同的MySQL用户就是用户没有角色postgresql有用户有角色但差异不大但索引例如btree这些两者又是相同的或者说相通的。 那么这些差异化的地方导致MySQL在向postgresql数据库迁移数据的时候会造成一些困扰虽然两者数据库使用的SQL语言百分之九十是相同的但就是这剩下的百分之十也是一个巨大的鸿沟。 普通的方案MySQLdump或者navicat直接备份MySQL然后将备份文件导入postgresql需要修改很多地方最基本的是需要提取insert语句光这些工作量就非常的大了如果要迁移的数据很多的话因此该方案基本上是不能考虑的。 OK那么有没有MySQL数据库平滑的向postgresql数据库迁移的方案呢 答案是有的版本答案就是pgloader工具但丑话先说前面此工具只支持全量迁移并不支持增量迁移这应该是一个比较遗憾的地方其它的方面比如迁移效率迁移用时迁移质量也就是迁移到postgresql的数据是否完整准确迁移方式例如库对库迁移读取csv文件迁移编写配置文件迁移这些方面是让人挑不出理的。 一 pgloader的部署安装 下载 pgloader通常的部署方式是三种第一种是编译部署第二种是docker镜像部署第三种是二进制部署本文选择的是二进制部署其它部署方式本文不予讨论。 pgloader的官方下载地址 https://github.com/dimitri/pgloader/releases 离线安装的地址 链接https://pan.baidu.com/s/18aN0CvyoXy_o8iP-aqVwGg?pwdkkey  提取码kkey    建议选择最新版本3.6.9 二 环境依赖安装 上述的离线安装包 解压后进入文件夹rpm -ivh * 即可。 如果是centos的确认是否有安装libtool-ltdl有输出表示已经安装将那个libtool-ltdl-2.4.2-22.h1.eulerosv2r7.x86_64.rpm移除即可。 确认是否有安装libtool-ltdl有输出表示已经安装 [rootcentos5 ~]# rpm -qa |grep libtool-ltdl libtool-ltdl-2.4.2-22.el7_3.x86_64这里说明一下两个关键依赖分别是freetds-devel和sbcl-1.4.0其它rpm包是这两个关键依赖的依赖。 三 部署 已经部署过了 [rootcentos5 pgloader-bundle-3.6.9]# pwd /root/pgloader-bundle-3.6.9 [rootcentos5 pgloader-bundle-3.6.9]# make pgloader make: pgloader is up to date.第一次部署的make pgloader的输出是这样的 ;; loading system cffi;; loading system clssl;; loading system mssql;; loading file #P/root/pgloader_soft/pgloader-bundle-3.6.2/local-projects/pgloader-3.6.2/src/hooks.lisp;; loading system pgloadercompressed 0 bytes into 8 at level -1compressed 32768 bytes into 617 at level -1compressed 3047424 bytes into 820965 at level -1compressed 23691264 bytes into 6785671 at level -1compressed 91127808 bytes into 16513612 at level -1# thats ugly, but necessary when building on Windows :(mv bin/pgloader.tmp bin/pgloader 环境变量设置 vi /etc/profilealias pgloader/root/pgloader-bundle-3.6.9/bin/pgloader:wqsource /etc/profile 验证 [rootcentos5 ~]# pgloader --version pgloader version 3.6.9 compiled with SBCL 1.4.0-1.el7四 pgloader的初步使用 既然是MySQL迁移数据到postgresql那么自然需要两个服务器服务器1  IP是192.168.123.15该服务器部署postgresql-12.5服务器2 IP是192.168.123.16该服务器部署mariadb 如何部署这两个数据库就不在这里废话了。 MySQL数据库有test数据库该库里有erp表 MariaDB [(none)] use test; Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -ADatabase changed MariaDB [test] show tables; ---------------- | Tables_in_test | ---------------- | DEPT | | EMP | ---------------- 2 rows in set (0.00 sec)MariaDB [test] select * from EMP; ---------------------------------------------------------------- | EMPNO | ENAME | JOB | MGR | HIREDATE | SAL | COMM | DEPTNO | ---------------------------------------------------------------- | 7369 | SMITH | CLERK | 7902 | 1980-12-17 | 800 | NULL | 20 | | 7499 | ALLEN | SALESMAN | 7698 | 1981-02-20 | 1600 | 300 | 30 | | 7521 | WARD | SALESMAN | 7698 | 1981-02-22 | 1250 | 500 | 30 | | 7566 | JONES | MANAGER | 7839 | 1981-04-02 | 2975 | NULL | 20 | | 7654 | MARTIN | SALESMAN | 7698 | 1981-09-28 | 1250 | 1400 | 30 | | 7698 | BLAKE | MANAGER | 7839 | 1981-05-01 | 2850 | NULL | 30 | | 7782 | CLARK | MANAGER | 7839 | 1981-06-09 | 2450 | NULL | 10 | | 7788 | SCOTT | ANALYST | 7566 | 1987-04-19 | 3000 | NULL | 20 | | 7839 | KING | PRESIDENT | NULL | 1981-11-17 | 5000 | NULL | 10 | | 7844 | TURNER | SALESMAN | 7698 | 1981-09-08 | 1500 | 0 | 30 | | 7876 | ADAMS | CLERK | 7788 | 1987-05-23 | 1100 | NULL | 20 | | 7900 | JAMES | CLERK | 7698 | 1981-12-03 | 950 | NULL | 30 | | 7902 | FORD | ANALYST | 7566 | 1981-12-03 | 3000 | NULL | 20 | | 7934 | MILLER | CLERK | 7782 | 1982-01-23 | 1300 | NULL | 10 | ---------------------------------------------------------------- 14 rows in set (0.00 sec)编辑迁移配置文件在postgresql所在的服务器上文件内容如下 vi pg.load.test1load databasefrom mysql://root:密码192.168.123.16:3306/testinto pgsql://postgres:密码192.168.123.15:5432/postgres; 开始迁移 迁移命令和日志文件的内容 [postgrescentos5 ~]$ pgloader --verbose pg.load.test1 pg.load.test2 21 [postgrescentos5 ~]$ cat pg.load.test2 -bash: pgloader: command not found [postgrescentos5 ~]$ logout [rootcentos5 ~]# mv /home/postgres/pg.load.test1 ./ [rootcentos5 ~]# pgloader --verbose pg.load.test1 pg.load.test2 21 [rootcentos5 ~]# cat pg.load.test pg.load.test1 pg.load.test2 [rootcentos5 ~]# cat pg.load.test2 2023-08-04T08:03:56.02300008:00 NOTICE Starting pgloader, log system is ready. 2023-08-04T08:03:56.04900008:00 LOG pgloader version 3.6.9 2023-08-04T08:03:56.11500008:00 LOG Migrating from #MYSQL-CONNECTION mysql://root192.168.123.16:3306/test {1008D4C553} 2023-08-04T08:03:56.11500008:00 LOG Migrating into #PGSQL-CONNECTION pgsql://postgres192.168.123.15:5432/postgres {1008D4D933} 2023-08-04T08:03:56.40400008:00 ERROR mysql: Failed to connect to mysql at 192.168.123.16 (port 3306) as user root: MySQL Error [1045]: Access denied for user root192.168.123.15 (using password: YES) 2023-08-04T08:03:56.40400008:00 LOG report summary resettable name errors read imported bytes total time read write ----------------- --------- --------- --------- --------- -------------- --------- ---------fetch meta data 0 0 0 0.000s ----------------- --------- --------- --------- --------- -------------- --------- --------- ----------------- --------- --------- --------- --------- -------------- --------- --------- [rootcentos5 ~]# vim pg.load.test1 [rootcentos5 ~]# pgloader --verbose pg.load.test1 pg.load.test2 21 [rootcentos5 ~]# cat pg.load.test2 2023-08-04T08:03:56.02300008:00 NOTICE Starting pgloader, log system is ready. 2023-08-04T08:03:56.04900008:00 LOG pgloader version 3.6.9 2023-08-04T08:03:56.11500008:00 LOG Migrating from #MYSQL-CONNECTION mysql://root192.168.123.16:3306/test {1008D4C553} 2023-08-04T08:03:56.11500008:00 LOG Migrating into #PGSQL-CONNECTION pgsql://postgres192.168.123.15:5432/postgres {1008D4D933} 2023-08-04T08:03:56.40400008:00 ERROR mysql: Failed to connect to mysql at 192.168.123.16 (port 3306) as user root: MySQL Error [1045]: Access denied for user root192.168.123.15 (using password: YES) 2023-08-04T08:03:56.40400008:00 LOG report summary resettable name errors read imported bytes total time read write ----------------- --------- --------- --------- --------- -------------- --------- ---------fetch meta data 0 0 0 0.000s ----------------- --------- --------- --------- --------- -------------- --------- --------- ----------------- --------- --------- --------- --------- -------------- --------- --------- 2023-08-04T08:05:15.00500008:00 NOTICE Starting pgloader, log system is ready. 2023-08-04T08:05:15.01500008:00 LOG pgloader version 3.6.9 2023-08-04T08:05:15.04800008:00 LOG Migrating from #MYSQL-CONNECTION mysql://root192.168.123.16:3306/test {1008DBCD63} 2023-08-04T08:05:15.04800008:00 LOG Migrating into #PGSQL-CONNECTION pgsql://postgres192.168.123.15:5432/postgres {1008DBE1E3} 2023-08-04T08:05:15.13800008:00 NOTICE Prepare PostgreSQL database. 2023-08-04T08:05:15.19400008:00 NOTICE Processing tables in this order: test.emp: 14 rows, test.dept: 4 rows 2023-08-04T08:05:15.20800008:00 NOTICE COPY test.emp with 14 rows estimated [2/4] 2023-08-04T08:05:15.22700008:00 NOTICE COPY test.dept with 4 rows estimated [1/4] 2023-08-04T08:05:15.24100008:00 NOTICE DONE copying test.dept in 0.000s 2023-08-04T08:05:15.24100008:00 NOTICE DONE copying test.emp in 0.000s 2023-08-04T08:05:15.25300008:00 NOTICE CREATE UNIQUE INDEX idx_16388_primary ON test.emp (empno); 2023-08-04T08:05:15.26800008:00 NOTICE Completing PostgreSQL database. 2023-08-04T08:05:15.26800008:00 NOTICE Reset sequences 2023-08-04T08:05:15.28200008:00 NOTICE ALTER TABLE test.emp ADD PRIMARY KEY USING INDEX idx_16388_primary; 2023-08-04T08:05:15.28400008:00 NOTICE ALTER DATABASE postgres SET search_path TO public, test; 2023-08-04T08:05:15.28600008:00 LOG report summary resettable name errors read imported bytes total time read write ----------------------- --------- --------- --------- --------- -------------- --------- ---------fetch meta data 0 3 3 0.045s Create Schemas 0 0 0 0.001s Create SQL Types 0 0 0 0.002s Create tables 0 4 4 0.017s Set Table OIDs 0 2 2 0.006s ----------------------- --------- --------- --------- --------- -------------- --------- ---------test.emp 0 14 14 0.6 kB 0.033s 0.023s test.dept 0 4 4 0.1 kB 0.009s 0.005s ----------------------- --------- --------- --------- --------- -------------- --------- --------- COPY Threads Completion 0 4 4 0.022s Index Build Completion 0 1 1 0.006s Create Indexes 0 1 1 0.002s Reset Sequences 0 0 0 0.010s Primary Keys 0 1 1 0.001s Create Foreign Keys 0 0 0 0.000s Create Triggers 0 0 0 0.000s Set Search Path 0 1 1 0.000s Install Comments 0 0 0 0.000s ----------------------- --------- --------- --------- --------- -------------- --------- ---------Total import time ✓ 18 18 0.7 kB 0.041s 在postgresql数据库上查看是否迁移成功 可以看到完美迁移了
http://www.huolong8.cn/news/465219/

相关文章:

  • 网站如何续费织梦中英文网站源码
  • 网站 icp备案网站建设按期没有完成能要回定金吗
  • 可以做点赞的网站个人自媒体有哪些平台
  • 舟山高端网站设计建网站被封了
  • 怎么建立一个邮箱站长工具seo综合查询adc
  • python能做网站开发吗wordpress导航图片
  • 网站建设需要多少时间企业微信营销系统
  • 成都设计公司排行南京seo优化推广
  • 做杂志的模板下载网站有哪些wordpress app上传图片
  • 网站备案接入服务单位大连工程信息招标网
  • 建设银行网站官方网站湖北宜昌推广
  • 网页网站设计公司排名具有品牌的做网站
  • 学院网站群建设的目标seo网站做推广公司
  • pc网站增加手机站红光网站建设
  • 邯郸建设局公开网站wordpress做账号登录
  • 个人做跨境电商的平台网站有哪些云商城app
  • 企业网站开发中文摘要常州网站建设公司咨询
  • logo设计网站免费无水印wordpress 古今
  • 深圳网站系统哪家强wordpress集群
  • 站群wordpress网站开发报价表
  • 江苏省宿迁市建设局网站天眼查询官网在线入口
  • 河南航天建设工程有限公司网站聊天app推广代理
  • 绍兴网站建设专业的公司红酒 网站 模板
  • 网站的建设包括以下几个阶段免费做h5的网站
  • 大型移动网站开发网络广告推广网站
  • 网站开发技能证书易企秀网站怎么做轮播图
  • 那种广告式网站怎么做智能网站推广软件
  • 青岛黄岛区做网站设计的专业房产网站建设
  • 网站后台管理系统密码网站开发完整教程
  • 网站问卷调查系统怎么做深圳龙岗今天新闻头条