1、查看系统配置参数:
(1)、MysqL:
show variables like '%max_connection%';
show status;
(2)、oracle:
show parameter max;
show parameters;
2、数据库实时同步:
(1)、MysqL:
MysqL replication ;
(2)、oracle:
oracle active data guard
为啥是ADG而不是DG呢,因为DG是不能打开数据库的,只能是mount状态,而ADG和MysqL replication就一样了,从库(standby db )只是可以读;
3、innodb和OLTP
(1)、MysqL:
事务型数据库的引擎是innodb,一般要实现向oracle一样的都要设置一个参数autocommit = 0;
(2)、oracle:
原文链接:https://www.f2er.com/oracle/212045.html