msql & oracle 大同

前端之家收集整理的这篇文章主要介绍了msql & oracle 大同前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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:

OLAP\OLTP一个是用作数据仓库多用于查询,OLTP多面向于事务型数据库

原文链接:https://www.f2er.com/oracle/212045.html

猜你在找的Oracle相关文章