SlideShare a Scribd company logo
1 of 52
Download to read offline
March 2019
How to Migrate
from
Oracle DB to MariaDB
Bart Oleś, Support Engineer
Presenter
bart@severalnines.com
Copyright 2017 Severalnines AB
I'm Jean-Jérôme from the Severalnines Team and
I'm your host for today's webinar!
Feel free to ask any questions in the Questions
section of this application or via the Chat box.
You can also contact me directly via the chat box
or via email: info@severalnines.com during or
after the webinar.
Your host & some logistics
Copyright 2017 Severalnines AB
Copyright 2017 Severalnines AB
Automation & Management
Deployment
● Deploy a Cluster in Minutes
● On-Prem or Cloud (AWS/Azure/Google)
Monitoring
● Systems View with 1 sec Resolution
● DB / OS stats & Performance Advisors
● Configurable Dashboards
● Query Analyzer
● Real-time / historical
Management
● Backup Management
● Upgrades & Patching
● Security & Compliance
● Operational Reports
● Automatic Recovery & Repair
● Performance Management
● Automatic Performance Advisors
Copyright 2017 Severalnines AB
Supported Databases
Copyright 2017 Severalnines AB
Our Customers
Poll 1
Copyright 2019 Severalnines AB
Which of the following databases do you run in your production
environment:
● MySQL / MariaDB
● PostgreSQL
● SQLServer
● Oracle
● DB2
March 2019
Migrating from Oracle to
MariaDB
Bart Oleś, Support Engineer
Presenter
bart@severalnines.com
Agenda
Copyright 2019 Severalnines AB
A brief introduction to the platform migration
● Why organizations are moving to open source?
● Oracle to MariaDB - Why migrate?
● Platform support
● Installation process & administration simplicity
● Security and compliance
● Database access and network services
● PL/SQL and Popular Oracle Functions
● Backup process
● Controlling query execution
● Security
● High Availability and replication options for FREE!!!
How to Migrate from Oracle to MariaDB
Migration
● Planning & development strategy
● Assessment & preliminary check
● Data type mapping
● How to enable PL/SQL Syntax
● Migration tools
● Migration process
● Testing
Post-migration
● Monitoring & Alerting
● Performance Management
● Backup Management
● High availability
● Upgrades
● Scaling
● Staff training
● Operational Checklist
Copyright 2017 Severalnines AB
Copyright 2019 Severalnines AB
A brief introduction to the platform
migration
Why organizations are moving to
Open Source
Copyright 2019 Severalnines AB
Future of Open Source by Black Duck studies
● BETTER TIME TO MARKET
90% of companies say that OSS have greatly impacted innovation
and time to market.
● BETTER GROWTH POTENTIAL
80% of companies say that OSS improve margins and grow
revenues.
● MORE COMPETITIVE
65% of companies say that OSS has increased their ability to
compete.
● INCREASED ADOPTION
88% of companies say that they expect their Open Source
adoption to increase in the next two to three years.
● FAVORED SOLUTION
More than 66% of companies say that they prefer Open Source
over proprietary software solutions.
By 2022
- 50% of existing commercial
databases will be converted to
open source
- 70% of new in-house
applications will be developed on
an open source DB
Why migrate to MariaDB?
Copyright 2019 Severalnines AB
Only Oracle Express Edition is free, but it has very limited features when
compared to MariaDB.
For extensive features, either Oracle Standard Edition or Oracle Enterprise
Edition has to be purchased
● Open Source has matured
○ 24/7 support, SLA’s, features
● MariaDB has gained features
● Migration supporting features
○ SQL_MODE=Oracle
● Migration tools
● Automatic schema migration
● Semi-automatic procedure migration
● Migration Practice within MariaDB
● Scaling out migration projects
Installation process and administration
simplicity
Copyright 2019 Severalnines AB
● Installation process is straightforward comparing to Oracle OUI and DBCA
○ Binary packages
○ RPM packages (MariaDB replace
MySQL Community in RDBMs for RedHat and Centos 7)
○ .deb packages
○ MSI packages on Windows
○ Server PKG on macOS
○ Docker image
○ Automation scripts Chef, Puppet etc.
○ Cloud providers
■ MariaDB on AWS Marketplace
■ MariaDB on RDS
■ MariaDB on Azure
Installation process and administration
simplicity
Copyright 2019 Severalnines AB
● Swiss knife: Percona Toolkit
● Monitoring: Percona PMM, VividCortex, Zabbix, Nagios
● ClusterControl (MySQL, MariaDB, Percona, MongoDB, Oracle NDB, MongoDB)
○ Backup Management
○ Monitoring and Alerting
○ Deployment and Scaling
○ Upgrades and Patching
○ Security and Compliance
○ Operational Reporting
○ Configuration Management
○ Automatic Recovery
○ Performance Management
○ Automated Performance Advisors
Database access and network services
comparison
Copyright 2019 Severalnines AB
● MariaDB shares with Oracle good support for database access
○ ODBC/JDBC drivers, access libraries for Perl/Python/PHP
● MariaDB does not have dedicated listener service
● No Oracle SCAN functionality (external load balancer is needed)
● MariaDB lack of “Oracle database networking services”
● No Transparent Application Failover (external load balancer is needed)
● Secure user access with host definition (similar to Oracle Connection
Manager)
Database access and network services
comparison
Copyright 2019 Severalnines AB
● MaxScale
● Keepalived
Works also with other
Load balancers
● HAProxy
● ProxySQL
Security
Copyright 2019 Severalnines AB
To achieve enterprise security compliance standards, MariaDB offers
built-in features like:
Audit plugin
Encryption of data-at-rest
Certificates, TSS connection
PAM Plugin
Controlling query execution
Copyright 2019 Severalnines AB
● MariaDB used XtraDB from previous versions until 10.1 and shifted to
InnoDB from version 10.2 onwards
● Other storage engines available
○ MyRocks storage engine, Spider for Partitioning
○ MariaDB ColumnStore equivalent of Oracle Database In Memory
Column store
Controlling query execution
Copyright 2019 Severalnines AB
By default, MariaDB has the autocommit variable set to ON
Explicitly handle transactional statements to take advantage of
ROLLBACK or SAVEPOINT
Same concept that Oracle uses in terms of commit/rollback/savepoint
For explicit transactions, use START TRANSACTION/BEGIN; <SQL
STATEMENTS>; COMMIT; syntax
START TRANSACTION/BEGIN;
<SQL STATEMENTS>;
COMMIT; syntax.
Dual Table
Copyright 2019 Severalnines AB
● MariaDB has dual compatibility with Oracle which is meant for
compatibility of databases using a dummy table, namely DUAL
● It operates just the same as MySQL where the FROM clause is not
mandatory, so the DUAL table is not necessary.
● DUAL table does not work exactly the same way as it does for Oracle,
but for simple SELECT's in MariaDB, this is fine.
Dual Table
Copyright 2019 Severalnines AB
SQL> DESC DUAL;
Name Null? Type
----------------------------------------- -------- ----------------------------
DUMMY VARCHAR2(1)
SQL> SELECT CURRENT_TIMESTAMP FROM DUAL;
CURRENT_TIMESTAMP
---------------------------------------------------------------------------
16-FEB-19 04.16.18.910331 AM +08:00
Dual Table
Copyright 2019 Severalnines AB
MariaDB [test]> DESC DUAL;
ERROR 1064 (42000): You have an error in your SQL syntax; check the
manual that corresponds to your MariaDB server version for the right
syntax to use near 'DUAL' at line 1
MariaDB [test]> SELECT CURRENT_TIMESTAMP FROM DUAL;
+---------------------+
| CURRENT_TIMESTAMP |
+---------------------+
| 2019-02-27 04:11:01 |
+---------------------+
1 row in set (0.000 sec)
SYSDATE
Copyright 2019 Severalnines AB
● Oracle's SYSDATE function is almost the same as in MariaDB
● MariaDB returns date and time and it’s a function that requires () (close
and open parenthesis with no arguments required. To demonstrate this
below, here's Oracle and MariaDB on using SYSDATE.
● In Oracle, using plain SYSDATE just returns the date of the day without
the time. But to get the time and date, use TO_CHAR to convert the date
time into its desired format; whereas in MariaDB, you might not need it
to get the date and the time as it returns both.
SYSDATE
Copyright 2019 Severalnines AB
● SQL> SELECT TO_CHAR (SYSDATE, 'MM-DD-YYYY HH24:MI:SS') "NOW"
FROM DUAL;
NOW
-------------------
02-16-2019 04:39:00
SQL> SELECT SYSDATE FROM DUAL;
SYSDATE
---------
16-FEB-19
SYSDATE
Copyright 2019 Severalnines AB
MariaDB [test]> SELECT SYSDATE() FROM DUAL;
+---------------------+
| SYSDATE() |
+---------------------+
| 2019-02-27 04:11:57 |
+---------------------+
1 row in set (0.000 sec)
TO_DATE
Copyright 2019 Severalnines AB
MariaDB [test]> SELECT SYSDATE() FROM DUAL;
+---------------------+
| SYSDATE() |
+---------------------+
| 2019-02-27 04:11:57 |
+---------------------+
1 row in set (0.000 sec)
High Availability and replication options for
FREE!!!
Copyright 2019 Severalnines AB
Multi-master, Synchronous
Millisecond latency
• Dynamic topology changes
• Quorum-based consistency
• Load balancing and failover (MaxScale, ProxySQL, HAProxy)
Master-slave, Multi-source
• Asynchronous or semi-synchronous
• Multiple replication threads
• Parallel replication streams
• Delayed replication (configurable)
High Availability and replication options for
FREE!!!
Copyright 2019 Severalnines AB
M1
master
S1
slave
G1
galera
G2
galera
MaxScale
Application
Servers
Application
Servers
Application
Servers
Application
Servers
Application
Servers
RW RO
G3
galera
MariaDB Cluster
MaxScale
RW
RW
RW
Application
Servers
Application
Servers
Application
Servers
Application
Servers
Application
Servers
DR with Hybrid Cloud
● Data on primary site and hot
sites have same transactional
state
○ Failover instantaneous
and automatic
● 3 sites to avoid network
partitioning
Poll 2
Copyright 2019 Severalnines AB
Which of the following replacements of Oracle would you consider for a migration:
● MySQL
● MariaDB
● PostgreSQL
● MongoDB
● Other
Copyright 2017 Severalnines AB
Copyright 2019 Severalnines AB
Migration
Planning and development strategy
Copyright 2019 Severalnines AB
● A lot of key factors that needs to be considered and addressed.
● Start with Pilot program. One application at a time.
● Migration requires proper project planning and QA. No direct migration!
○ Migration of schema
○ Migration of interfaces
○ Query and functionality analyse
○ Performance load
○ User Acceptance Tests
○ System Integration Tests
● Switchover
● Point of no return
Data type mapping
Copyright 2019 Severalnines AB
MySQL and MariaDB share the same data types available. Although there
are variations as to how it is implemented.
While MySQL uses the JSON data-type, MariaDB differs as it's just an alias of
LONGTEXT data type. MariaDB has also a function, JSON_VALID, which can
be used within the CHECK constraint expression.
http://www.sqlines.com/oracle-to-mysql
http://www.sqlines.com/oracle-to-mariadb
How to enable PL/SQL syntax in MariaDB
Copyright 2019 Severalnines AB
From the version 10.3++, MariaDB supports PL/SQL structures;
● SQL_MODE;
Set it in the configuration file and restart the MariaDB Server;
● While running the MariaDB Server with the SQL_MODE as ORACLE:
○ The traditional MariaDB syntax for stored routines won't be available from
this point on;
● The best option is to run MariaDB Server with the SQL_MODE set on the
configuration file to avoid losing the feature in case of a restart.
How to enable PL/SQL syntax in MariaDB
Copyright 2019 Severalnines AB
MariaDB server when running with sql_mode=ORACLE:
○ VARCHAR2 - a synonym to VARCHAR;
○ NUMBER - a synonym to DECIMAL;
○ DATE (with time portion) - a synonym to MariaDB DATETIME;
○ RAW - a synonym to VARBINARY;
○ CLOB - a synonym to LONGTEXT;
○ BLOB - a synonym to LONGBLOB.
How to enable PL/SQL syntax in MariaDB
Copyright 2019 Severalnines AB
● EXCEPT / INTERSECT
● Instance Add Column
● ROW OF
● Sequences
● User Defined Types
● Condition Pushdowns
● HAVING into WHERE
● and many more
Migration tools
Copyright 2019 Severalnines AB
● SQLlines
● AWS conversion tools
● HVR replication
● Inspier
Testing
Copyright 2019 Severalnines AB
Copyright 2017 Severalnines AB
Copyright 2019 Severalnines AB
Post-migration
Monitoring and Alerting
Copyright 2019 Severalnines AB
● What to monitor?
○ Database I/O
○ Database transactions
○ System and Network
○ Storage
○ Backups
○ Database Load Balancer
● Hybrid Cloud Environments
● Alerting and Notifications
● Integration with other systems
Monitoring and Alerting
Copyright 2019 Severalnines AB
● Database Monitoring Tools:
○ PMM (Percona Monitoring and Management
○ BindPlane
○ VividCortex
○ SQL Diagnostic Manager/MONyog
○ ClusterControl
● Other popular tools:
○ Prometheus
○ Graphite
○ TICK Stack From InfluxData
○ OpenTSDB
○ ELK or Elastic Stack
Backup Management
Copyright 2019 Severalnines AB
● No backup repository built-in (lack of RMAN)
● mariadbbackup (hotbackup)
● mysqldump
● s9s - equivalent to RMAN
$ s9s backup --create --backup-method=mysqldump --cluster-id=1 --nodes=10.0.0.5:3306
--backup-directory=/storage/backups
Job with ID 4 registered
$ s9s backup --list --cluster-id=1 --long --human-readable
ID CID STATE OWNER HOSTNAME CREATED SIZE FILENAME
1 1 COMPLETED dba 10.0.0.5 07:21:39 252K mysqldump_2018-11-11_072135_mysqldb.sql.gz
1 1 COMPLETED dba 10.0.0.5 07:21:43 1014 mysqldump_2018-11-11_072135_schema.sql.gz
1 1 COMPLETED dba 10.0.0.5 07:22:03 109M mysqldump_2018-11-11_072135_data.sql.gz
1 1 COMPLETED dba 10.0.0.5 07:22:07 679 mysqldump_2018-11-11_072135_triggerseventsroutines.sql.gz
2 1 COMPLETED dba 10.0.0.5 07:30:20 252K mysqldump_2018-11-11_073016_mysqldb.sql.gz
2 1 COMPLETED dba 10.0.0.5 07:30:24 1014 mysqldump_2018-11-11_073016_schema.sql.gz
2 1 COMPLETED dba 10.0.0.5 07:30:44 109M mysqldump_2018-11-11_073016_data.sql.gz
2 1 COMPLETED dba 10.0.0.5 07:30:49 679 mysqldump_2018-11-11_073016_triggerseventsroutines.sql.gz
High Availability - Hybrid Replication
Copyright 2019 Severalnines AB
● MariaDB Cluster is compatible with MariaDB
replication:
○ MariaDB cluster can operate as
MariaDB slave
○ MariaDB cluster can operate as master
for MariaDB slave
Scaling
Copyright 2019 Severalnines AB
● License cost as important aspect of scaling
● Dedicated engines and plugins for scaling
● Ease of scaling
● Automated scaling
Staff training
Copyright 2019 Severalnines AB
● We Oracle DBA’s love certification
● MariaDB provides a certification exam for DBAs to prove their expertise
○ Proctored and administered by MariaDB
○ Tests DBAs on a variety of tasks, including basic configuration, security operations, backup
and restore, and performance tuning.
Operational Checklist
Copyright 2019 Severalnines AB
● Are queues building up?
● Slow queries?
● Tune queries in the Query Monitor.
● Are backups working?
● Reporting queries?
● Latency issues?
● Random node restarts and failures?
● Upgrade time?
● Did you test new code before putting in production?
Belt and Suspenders
Copyright 2019 Severalnines AB
Apply your backup procedures as normal:
- mysqldump with "--single-transaction"
- volume snapshot
- xtrabackup/mariabackup
You may still want to have an async slave connected to the cluster:
- Reporting
- Disaster Recovery
http://www.severalnines.com/blog/asynchronous-replication-galera-clustermysql-server-gtid
Point in time recovery
http://www.severalnines.com/blog/point-time-recovery-galera-cluster
MariaDB AX/TX
https://severalnines.com/blog/analytics-mariadb-ax-open-source-columnar-datastore
Poll 3
Copyright 2019 Severalnines AB
Have you any plans to migrate from Oracle database to an Open Source database?
● Yes, within the next 6 months
● Yes, within 1 year
● Yes, within 2 years
● I do not plan to migrate
● I do not have Oracle database
Copyright 2017 Severalnines AB
Copyright 2019 Severalnines AB
Q & A
Additional Resources
Copyright 2019 Severalnines AB
Blog: Migrating from Oracle database to MariaDB - what you should know
Blog: Migrating from Oracle database to MariaDB - deep dive
Product Page: ClusterControl for MariaDB
Download: ClusterControl
Contact: info@severalnines.com
Additional Resources
Copyright 2019 Severalnines AB

More Related Content

What's hot

MariaDB 10: The Complete Tutorial
MariaDB 10: The Complete TutorialMariaDB 10: The Complete Tutorial
MariaDB 10: The Complete TutorialColin Charles
 
MySQL Performance Tuning. Part 1: MySQL Configuration (includes MySQL 5.7)
MySQL Performance Tuning. Part 1: MySQL Configuration (includes MySQL 5.7)MySQL Performance Tuning. Part 1: MySQL Configuration (includes MySQL 5.7)
MySQL Performance Tuning. Part 1: MySQL Configuration (includes MySQL 5.7)Aurimas Mikalauskas
 
Migrating Oracle database to PostgreSQL
Migrating Oracle database to PostgreSQLMigrating Oracle database to PostgreSQL
Migrating Oracle database to PostgreSQLUmair Mansoob
 
New features in ProxySQL 2.0 (updated to 2.0.9) by Rene Cannao (ProxySQL)
New features in ProxySQL 2.0 (updated to 2.0.9) by Rene Cannao (ProxySQL)New features in ProxySQL 2.0 (updated to 2.0.9) by Rene Cannao (ProxySQL)
New features in ProxySQL 2.0 (updated to 2.0.9) by Rene Cannao (ProxySQL)Altinity Ltd
 
How to Migrate from Oracle to EDB Postgres
How to Migrate from Oracle to EDB PostgresHow to Migrate from Oracle to EDB Postgres
How to Migrate from Oracle to EDB PostgresAshnikbiz
 
database migration simple, cross-engine and cross-platform migrations with ...
database migration   simple, cross-engine and cross-platform migrations with ...database migration   simple, cross-engine and cross-platform migrations with ...
database migration simple, cross-engine and cross-platform migrations with ...Amazon Web Services
 
MySQL InnoDB Cluster - A complete High Availability solution for MySQL
MySQL InnoDB Cluster - A complete High Availability solution for MySQLMySQL InnoDB Cluster - A complete High Availability solution for MySQL
MySQL InnoDB Cluster - A complete High Availability solution for MySQLOlivier DASINI
 
[오픈소스컨설팅]Day #1 MySQL 엔진소개, 튜닝, 백업 및 복구, 업그레이드방법
[오픈소스컨설팅]Day #1 MySQL 엔진소개, 튜닝, 백업 및 복구, 업그레이드방법[오픈소스컨설팅]Day #1 MySQL 엔진소개, 튜닝, 백업 및 복구, 업그레이드방법
[오픈소스컨설팅]Day #1 MySQL 엔진소개, 튜닝, 백업 및 복구, 업그레이드방법Ji-Woong Choi
 
Oracle - Checklist for performance issues
Oracle - Checklist for performance issuesOracle - Checklist for performance issues
Oracle - Checklist for performance issuesMarkus Flechtner
 
YugabyteDB - Distributed SQL Database on Kubernetes
YugabyteDB - Distributed SQL Database on KubernetesYugabyteDB - Distributed SQL Database on Kubernetes
YugabyteDB - Distributed SQL Database on KubernetesDoKC
 
MySQL Performance for DevOps
MySQL Performance for DevOpsMySQL Performance for DevOps
MySQL Performance for DevOpsSveta Smirnova
 
Running MariaDB in multiple data centers
Running MariaDB in multiple data centersRunning MariaDB in multiple data centers
Running MariaDB in multiple data centersMariaDB plc
 
Achieving High Availability in PostgreSQL
Achieving High Availability in PostgreSQLAchieving High Availability in PostgreSQL
Achieving High Availability in PostgreSQLMydbops
 
MySQL HA with PaceMaker
MySQL HA with  PaceMakerMySQL HA with  PaceMaker
MySQL HA with PaceMakerKris Buytaert
 
MySQL_SQL_Tunning_v0.1.3.docx
MySQL_SQL_Tunning_v0.1.3.docxMySQL_SQL_Tunning_v0.1.3.docx
MySQL_SQL_Tunning_v0.1.3.docxNeoClova
 
Heat Map and Automatic Data Optimization with Oracle Database 12c
Heat Map and Automatic Data Optimization with Oracle Database 12cHeat Map and Automatic Data Optimization with Oracle Database 12c
Heat Map and Automatic Data Optimization with Oracle Database 12cDigicomp Academy Suisse Romande SA
 
MariaDB MaxScale monitor 매뉴얼
MariaDB MaxScale monitor 매뉴얼MariaDB MaxScale monitor 매뉴얼
MariaDB MaxScale monitor 매뉴얼NeoClova
 

What's hot (20)

MariaDB 10: The Complete Tutorial
MariaDB 10: The Complete TutorialMariaDB 10: The Complete Tutorial
MariaDB 10: The Complete Tutorial
 
MySQL Performance Tuning. Part 1: MySQL Configuration (includes MySQL 5.7)
MySQL Performance Tuning. Part 1: MySQL Configuration (includes MySQL 5.7)MySQL Performance Tuning. Part 1: MySQL Configuration (includes MySQL 5.7)
MySQL Performance Tuning. Part 1: MySQL Configuration (includes MySQL 5.7)
 
Migrating Oracle database to PostgreSQL
Migrating Oracle database to PostgreSQLMigrating Oracle database to PostgreSQL
Migrating Oracle database to PostgreSQL
 
New features in ProxySQL 2.0 (updated to 2.0.9) by Rene Cannao (ProxySQL)
New features in ProxySQL 2.0 (updated to 2.0.9) by Rene Cannao (ProxySQL)New features in ProxySQL 2.0 (updated to 2.0.9) by Rene Cannao (ProxySQL)
New features in ProxySQL 2.0 (updated to 2.0.9) by Rene Cannao (ProxySQL)
 
How to Migrate from Oracle to EDB Postgres
How to Migrate from Oracle to EDB PostgresHow to Migrate from Oracle to EDB Postgres
How to Migrate from Oracle to EDB Postgres
 
database migration simple, cross-engine and cross-platform migrations with ...
database migration   simple, cross-engine and cross-platform migrations with ...database migration   simple, cross-engine and cross-platform migrations with ...
database migration simple, cross-engine and cross-platform migrations with ...
 
Azure CosmosDb
Azure CosmosDbAzure CosmosDb
Azure CosmosDb
 
MySQL InnoDB Cluster - A complete High Availability solution for MySQL
MySQL InnoDB Cluster - A complete High Availability solution for MySQLMySQL InnoDB Cluster - A complete High Availability solution for MySQL
MySQL InnoDB Cluster - A complete High Availability solution for MySQL
 
[오픈소스컨설팅]Day #1 MySQL 엔진소개, 튜닝, 백업 및 복구, 업그레이드방법
[오픈소스컨설팅]Day #1 MySQL 엔진소개, 튜닝, 백업 및 복구, 업그레이드방법[오픈소스컨설팅]Day #1 MySQL 엔진소개, 튜닝, 백업 및 복구, 업그레이드방법
[오픈소스컨설팅]Day #1 MySQL 엔진소개, 튜닝, 백업 및 복구, 업그레이드방법
 
Oracle - Checklist for performance issues
Oracle - Checklist for performance issuesOracle - Checklist for performance issues
Oracle - Checklist for performance issues
 
YugabyteDB - Distributed SQL Database on Kubernetes
YugabyteDB - Distributed SQL Database on KubernetesYugabyteDB - Distributed SQL Database on Kubernetes
YugabyteDB - Distributed SQL Database on Kubernetes
 
MySQL Performance for DevOps
MySQL Performance for DevOpsMySQL Performance for DevOps
MySQL Performance for DevOps
 
Introduction to Amazon DynamoDB
Introduction to Amazon DynamoDBIntroduction to Amazon DynamoDB
Introduction to Amazon DynamoDB
 
Running MariaDB in multiple data centers
Running MariaDB in multiple data centersRunning MariaDB in multiple data centers
Running MariaDB in multiple data centers
 
Achieving High Availability in PostgreSQL
Achieving High Availability in PostgreSQLAchieving High Availability in PostgreSQL
Achieving High Availability in PostgreSQL
 
MySQL HA with PaceMaker
MySQL HA with  PaceMakerMySQL HA with  PaceMaker
MySQL HA with PaceMaker
 
Apache hive
Apache hiveApache hive
Apache hive
 
MySQL_SQL_Tunning_v0.1.3.docx
MySQL_SQL_Tunning_v0.1.3.docxMySQL_SQL_Tunning_v0.1.3.docx
MySQL_SQL_Tunning_v0.1.3.docx
 
Heat Map and Automatic Data Optimization with Oracle Database 12c
Heat Map and Automatic Data Optimization with Oracle Database 12cHeat Map and Automatic Data Optimization with Oracle Database 12c
Heat Map and Automatic Data Optimization with Oracle Database 12c
 
MariaDB MaxScale monitor 매뉴얼
MariaDB MaxScale monitor 매뉴얼MariaDB MaxScale monitor 매뉴얼
MariaDB MaxScale monitor 매뉴얼
 

Similar to Migrate Oracle to MariaDB in 40 Steps

The New MariaDB Offering: MariaDB 10, MaxScale and More
The New MariaDB Offering: MariaDB 10, MaxScale and MoreThe New MariaDB Offering: MariaDB 10, MaxScale and More
The New MariaDB Offering: MariaDB 10, MaxScale and MoreMariaDB Corporation
 
A Cloud Journey - Move to the Oracle Cloud
A Cloud Journey - Move to the Oracle CloudA Cloud Journey - Move to the Oracle Cloud
A Cloud Journey - Move to the Oracle CloudMarkus Michalewicz
 
Oracle Database – Mission Critical
Oracle Database – Mission CriticalOracle Database – Mission Critical
Oracle Database – Mission CriticalMarkus Michalewicz
 
Storage Optimization and Operational Simplicity in SAP Adaptive Server Enter...
Storage Optimization and Operational Simplicity in SAP  Adaptive Server Enter...Storage Optimization and Operational Simplicity in SAP  Adaptive Server Enter...
Storage Optimization and Operational Simplicity in SAP Adaptive Server Enter...SAP Technology
 
reModernize - Updating & Consolidating MySQL
reModernize - Updating & Consolidating MySQLreModernize - Updating & Consolidating MySQL
reModernize - Updating & Consolidating MySQLAmazon Web Services
 
MariaDB: Connect Storage Engine
MariaDB: Connect Storage EngineMariaDB: Connect Storage Engine
MariaDB: Connect Storage EngineKangaroot
 
SAP on Azure. Use Cases and Benefits
SAP on Azure. Use Cases and BenefitsSAP on Azure. Use Cases and Benefits
SAP on Azure. Use Cases and BenefitsmyCloudDoor
 
MariaDB for the Enterprise
MariaDB for the EnterpriseMariaDB for the Enterprise
MariaDB for the EnterpriseAll Things Open
 
Marketing Automation at Scale: How Marketo Solved Key Data Management Challen...
Marketing Automation at Scale: How Marketo Solved Key Data Management Challen...Marketing Automation at Scale: How Marketo Solved Key Data Management Challen...
Marketing Automation at Scale: How Marketo Solved Key Data Management Challen...Continuent
 
Oracle RAC 19c and Later - Best Practices #OOWLON
Oracle RAC 19c and Later - Best Practices #OOWLONOracle RAC 19c and Later - Best Practices #OOWLON
Oracle RAC 19c and Later - Best Practices #OOWLONMarkus Michalewicz
 
Upcoming changes in MySQL 5.7
Upcoming changes in MySQL 5.7Upcoming changes in MySQL 5.7
Upcoming changes in MySQL 5.7Morgan Tocker
 
Les fonctionnalites mariadb
Les fonctionnalites mariadbLes fonctionnalites mariadb
Les fonctionnalites mariadblemugfr
 
Oracle EBS Journey to the Cloud - What is New in 2022 (UKOUG Breakthrough 22 ...
Oracle EBS Journey to the Cloud - What is New in 2022 (UKOUG Breakthrough 22 ...Oracle EBS Journey to the Cloud - What is New in 2022 (UKOUG Breakthrough 22 ...
Oracle EBS Journey to the Cloud - What is New in 2022 (UKOUG Breakthrough 22 ...Andrejs Prokopjevs
 
Tips to drive maria db cluster performance for nextcloud
Tips to drive maria db cluster performance for nextcloudTips to drive maria db cluster performance for nextcloud
Tips to drive maria db cluster performance for nextcloudSeveralnines
 
Introduction of MariaDB 2017 09
Introduction of MariaDB 2017 09Introduction of MariaDB 2017 09
Introduction of MariaDB 2017 09GOTO Satoru
 
The New MariaDB Offering - MariaDB 10, MaxScale and more
The New MariaDB Offering - MariaDB 10, MaxScale and moreThe New MariaDB Offering - MariaDB 10, MaxScale and more
The New MariaDB Offering - MariaDB 10, MaxScale and moreMariaDB Corporation
 
Getting started in the cloud for developers
Getting started in the cloud for developersGetting started in the cloud for developers
Getting started in the cloud for developersMariaDB plc
 
Webinar slides: How to automate and manage MongoDB & Percona Server for MongoDB
Webinar slides: How to automate and manage MongoDB & Percona Server for MongoDBWebinar slides: How to automate and manage MongoDB & Percona Server for MongoDB
Webinar slides: How to automate and manage MongoDB & Percona Server for MongoDBSeveralnines
 
AWS RDS in MySQL 2023 Vinoth Kanna @ Mydbops OpenSource Database Meetup 15
AWS RDS in MySQL 2023 Vinoth Kanna @ Mydbops OpenSource Database Meetup 15AWS RDS in MySQL 2023 Vinoth Kanna @ Mydbops OpenSource Database Meetup 15
AWS RDS in MySQL 2023 Vinoth Kanna @ Mydbops OpenSource Database Meetup 15Mydbops
 

Similar to Migrate Oracle to MariaDB in 40 Steps (20)

The New MariaDB Offering: MariaDB 10, MaxScale and More
The New MariaDB Offering: MariaDB 10, MaxScale and MoreThe New MariaDB Offering: MariaDB 10, MaxScale and More
The New MariaDB Offering: MariaDB 10, MaxScale and More
 
Supercharging oracle upgrades
Supercharging oracle upgradesSupercharging oracle upgrades
Supercharging oracle upgrades
 
A Cloud Journey - Move to the Oracle Cloud
A Cloud Journey - Move to the Oracle CloudA Cloud Journey - Move to the Oracle Cloud
A Cloud Journey - Move to the Oracle Cloud
 
Oracle Database – Mission Critical
Oracle Database – Mission CriticalOracle Database – Mission Critical
Oracle Database – Mission Critical
 
Storage Optimization and Operational Simplicity in SAP Adaptive Server Enter...
Storage Optimization and Operational Simplicity in SAP  Adaptive Server Enter...Storage Optimization and Operational Simplicity in SAP  Adaptive Server Enter...
Storage Optimization and Operational Simplicity in SAP Adaptive Server Enter...
 
reModernize - Updating & Consolidating MySQL
reModernize - Updating & Consolidating MySQLreModernize - Updating & Consolidating MySQL
reModernize - Updating & Consolidating MySQL
 
MariaDB: Connect Storage Engine
MariaDB: Connect Storage EngineMariaDB: Connect Storage Engine
MariaDB: Connect Storage Engine
 
SAP on Azure. Use Cases and Benefits
SAP on Azure. Use Cases and BenefitsSAP on Azure. Use Cases and Benefits
SAP on Azure. Use Cases and Benefits
 
MariaDB for the Enterprise
MariaDB for the EnterpriseMariaDB for the Enterprise
MariaDB for the Enterprise
 
Marketing Automation at Scale: How Marketo Solved Key Data Management Challen...
Marketing Automation at Scale: How Marketo Solved Key Data Management Challen...Marketing Automation at Scale: How Marketo Solved Key Data Management Challen...
Marketing Automation at Scale: How Marketo Solved Key Data Management Challen...
 
Oracle RAC 19c and Later - Best Practices #OOWLON
Oracle RAC 19c and Later - Best Practices #OOWLONOracle RAC 19c and Later - Best Practices #OOWLON
Oracle RAC 19c and Later - Best Practices #OOWLON
 
Upcoming changes in MySQL 5.7
Upcoming changes in MySQL 5.7Upcoming changes in MySQL 5.7
Upcoming changes in MySQL 5.7
 
Les fonctionnalites mariadb
Les fonctionnalites mariadbLes fonctionnalites mariadb
Les fonctionnalites mariadb
 
Oracle EBS Journey to the Cloud - What is New in 2022 (UKOUG Breakthrough 22 ...
Oracle EBS Journey to the Cloud - What is New in 2022 (UKOUG Breakthrough 22 ...Oracle EBS Journey to the Cloud - What is New in 2022 (UKOUG Breakthrough 22 ...
Oracle EBS Journey to the Cloud - What is New in 2022 (UKOUG Breakthrough 22 ...
 
Tips to drive maria db cluster performance for nextcloud
Tips to drive maria db cluster performance for nextcloudTips to drive maria db cluster performance for nextcloud
Tips to drive maria db cluster performance for nextcloud
 
Introduction of MariaDB 2017 09
Introduction of MariaDB 2017 09Introduction of MariaDB 2017 09
Introduction of MariaDB 2017 09
 
The New MariaDB Offering - MariaDB 10, MaxScale and more
The New MariaDB Offering - MariaDB 10, MaxScale and moreThe New MariaDB Offering - MariaDB 10, MaxScale and more
The New MariaDB Offering - MariaDB 10, MaxScale and more
 
Getting started in the cloud for developers
Getting started in the cloud for developersGetting started in the cloud for developers
Getting started in the cloud for developers
 
Webinar slides: How to automate and manage MongoDB & Percona Server for MongoDB
Webinar slides: How to automate and manage MongoDB & Percona Server for MongoDBWebinar slides: How to automate and manage MongoDB & Percona Server for MongoDB
Webinar slides: How to automate and manage MongoDB & Percona Server for MongoDB
 
AWS RDS in MySQL 2023 Vinoth Kanna @ Mydbops OpenSource Database Meetup 15
AWS RDS in MySQL 2023 Vinoth Kanna @ Mydbops OpenSource Database Meetup 15AWS RDS in MySQL 2023 Vinoth Kanna @ Mydbops OpenSource Database Meetup 15
AWS RDS in MySQL 2023 Vinoth Kanna @ Mydbops OpenSource Database Meetup 15
 

More from Severalnines

Cloud's future runs through Sovereign DBaaS
Cloud's future runs through Sovereign DBaaSCloud's future runs through Sovereign DBaaS
Cloud's future runs through Sovereign DBaaSSeveralnines
 
Working with the Moodle Database: The Basics
Working with the Moodle Database: The BasicsWorking with the Moodle Database: The Basics
Working with the Moodle Database: The BasicsSeveralnines
 
SysAdmin Working from Home? Tips to Automate MySQL, MariaDB, Postgres & MongoDB
SysAdmin Working from Home? Tips to Automate MySQL, MariaDB, Postgres & MongoDBSysAdmin Working from Home? Tips to Automate MySQL, MariaDB, Postgres & MongoDB
SysAdmin Working from Home? Tips to Automate MySQL, MariaDB, Postgres & MongoDBSeveralnines
 
(slides) Polyglot persistence: utilizing open source databases as a Swiss poc...
(slides) Polyglot persistence: utilizing open source databases as a Swiss poc...(slides) Polyglot persistence: utilizing open source databases as a Swiss poc...
(slides) Polyglot persistence: utilizing open source databases as a Swiss poc...Severalnines
 
Webinar slides: How to Automate & Manage PostgreSQL with ClusterControl
Webinar slides: How to Automate & Manage PostgreSQL with ClusterControlWebinar slides: How to Automate & Manage PostgreSQL with ClusterControl
Webinar slides: How to Automate & Manage PostgreSQL with ClusterControlSeveralnines
 
Webinar slides: How to Manage Replication Failover Processes for MySQL, Maria...
Webinar slides: How to Manage Replication Failover Processes for MySQL, Maria...Webinar slides: How to Manage Replication Failover Processes for MySQL, Maria...
Webinar slides: How to Manage Replication Failover Processes for MySQL, Maria...Severalnines
 
Webinar slides: Backup Management for MySQL, MariaDB, PostgreSQL & MongoDB wi...
Webinar slides: Backup Management for MySQL, MariaDB, PostgreSQL & MongoDB wi...Webinar slides: Backup Management for MySQL, MariaDB, PostgreSQL & MongoDB wi...
Webinar slides: Backup Management for MySQL, MariaDB, PostgreSQL & MongoDB wi...Severalnines
 
Disaster Recovery Planning for MySQL & MariaDB
Disaster Recovery Planning for MySQL & MariaDBDisaster Recovery Planning for MySQL & MariaDB
Disaster Recovery Planning for MySQL & MariaDBSeveralnines
 
MariaDB Performance Tuning Crash Course
MariaDB Performance Tuning Crash CourseMariaDB Performance Tuning Crash Course
MariaDB Performance Tuning Crash CourseSeveralnines
 
Performance Tuning Cheat Sheet for MongoDB
Performance Tuning Cheat Sheet for MongoDBPerformance Tuning Cheat Sheet for MongoDB
Performance Tuning Cheat Sheet for MongoDBSeveralnines
 
Advanced MySql Data-at-Rest Encryption in Percona Server
Advanced MySql Data-at-Rest Encryption in Percona ServerAdvanced MySql Data-at-Rest Encryption in Percona Server
Advanced MySql Data-at-Rest Encryption in Percona ServerSeveralnines
 
Polyglot Persistence Utilizing Open Source Databases as a Swiss Pocket Knife
Polyglot Persistence Utilizing Open Source Databases as a Swiss Pocket KnifePolyglot Persistence Utilizing Open Source Databases as a Swiss Pocket Knife
Polyglot Persistence Utilizing Open Source Databases as a Swiss Pocket KnifeSeveralnines
 
Webinar slides: Free Monitoring (on Steroids) for MySQL, MariaDB, PostgreSQL ...
Webinar slides: Free Monitoring (on Steroids) for MySQL, MariaDB, PostgreSQL ...Webinar slides: Free Monitoring (on Steroids) for MySQL, MariaDB, PostgreSQL ...
Webinar slides: Free Monitoring (on Steroids) for MySQL, MariaDB, PostgreSQL ...Severalnines
 
Webinar slides: An Introduction to Performance Monitoring for PostgreSQL
Webinar slides: An Introduction to Performance Monitoring for PostgreSQLWebinar slides: An Introduction to Performance Monitoring for PostgreSQL
Webinar slides: An Introduction to Performance Monitoring for PostgreSQLSeveralnines
 
Webinar slides: Our Guide to MySQL & MariaDB Performance Tuning
Webinar slides: Our Guide to MySQL & MariaDB Performance TuningWebinar slides: Our Guide to MySQL & MariaDB Performance Tuning
Webinar slides: Our Guide to MySQL & MariaDB Performance TuningSeveralnines
 
Webinar slides: Migrating to Galera Cluster for MySQL and MariaDB
Webinar slides: Migrating to Galera Cluster for MySQL and MariaDBWebinar slides: Migrating to Galera Cluster for MySQL and MariaDB
Webinar slides: Migrating to Galera Cluster for MySQL and MariaDBSeveralnines
 
Webinar slides: How to Measure Database Availability?
Webinar slides: How to Measure Database Availability?Webinar slides: How to Measure Database Availability?
Webinar slides: How to Measure Database Availability?Severalnines
 
Webinar slides: Designing Open Source Databases for High Availability
Webinar slides: Designing Open Source Databases for High AvailabilityWebinar slides: Designing Open Source Databases for High Availability
Webinar slides: Designing Open Source Databases for High AvailabilitySeveralnines
 
Webinar slides: How to Get Started with Open Source Database Management
Webinar slides: How to Get Started with Open Source Database ManagementWebinar slides: How to Get Started with Open Source Database Management
Webinar slides: How to Get Started with Open Source Database ManagementSeveralnines
 
Webinar slides: How to Achieve PCI Compliance for MySQL & MariaDB with Cluste...
Webinar slides: How to Achieve PCI Compliance for MySQL & MariaDB with Cluste...Webinar slides: How to Achieve PCI Compliance for MySQL & MariaDB with Cluste...
Webinar slides: How to Achieve PCI Compliance for MySQL & MariaDB with Cluste...Severalnines
 

More from Severalnines (20)

Cloud's future runs through Sovereign DBaaS
Cloud's future runs through Sovereign DBaaSCloud's future runs through Sovereign DBaaS
Cloud's future runs through Sovereign DBaaS
 
Working with the Moodle Database: The Basics
Working with the Moodle Database: The BasicsWorking with the Moodle Database: The Basics
Working with the Moodle Database: The Basics
 
SysAdmin Working from Home? Tips to Automate MySQL, MariaDB, Postgres & MongoDB
SysAdmin Working from Home? Tips to Automate MySQL, MariaDB, Postgres & MongoDBSysAdmin Working from Home? Tips to Automate MySQL, MariaDB, Postgres & MongoDB
SysAdmin Working from Home? Tips to Automate MySQL, MariaDB, Postgres & MongoDB
 
(slides) Polyglot persistence: utilizing open source databases as a Swiss poc...
(slides) Polyglot persistence: utilizing open source databases as a Swiss poc...(slides) Polyglot persistence: utilizing open source databases as a Swiss poc...
(slides) Polyglot persistence: utilizing open source databases as a Swiss poc...
 
Webinar slides: How to Automate & Manage PostgreSQL with ClusterControl
Webinar slides: How to Automate & Manage PostgreSQL with ClusterControlWebinar slides: How to Automate & Manage PostgreSQL with ClusterControl
Webinar slides: How to Automate & Manage PostgreSQL with ClusterControl
 
Webinar slides: How to Manage Replication Failover Processes for MySQL, Maria...
Webinar slides: How to Manage Replication Failover Processes for MySQL, Maria...Webinar slides: How to Manage Replication Failover Processes for MySQL, Maria...
Webinar slides: How to Manage Replication Failover Processes for MySQL, Maria...
 
Webinar slides: Backup Management for MySQL, MariaDB, PostgreSQL & MongoDB wi...
Webinar slides: Backup Management for MySQL, MariaDB, PostgreSQL & MongoDB wi...Webinar slides: Backup Management for MySQL, MariaDB, PostgreSQL & MongoDB wi...
Webinar slides: Backup Management for MySQL, MariaDB, PostgreSQL & MongoDB wi...
 
Disaster Recovery Planning for MySQL & MariaDB
Disaster Recovery Planning for MySQL & MariaDBDisaster Recovery Planning for MySQL & MariaDB
Disaster Recovery Planning for MySQL & MariaDB
 
MariaDB Performance Tuning Crash Course
MariaDB Performance Tuning Crash CourseMariaDB Performance Tuning Crash Course
MariaDB Performance Tuning Crash Course
 
Performance Tuning Cheat Sheet for MongoDB
Performance Tuning Cheat Sheet for MongoDBPerformance Tuning Cheat Sheet for MongoDB
Performance Tuning Cheat Sheet for MongoDB
 
Advanced MySql Data-at-Rest Encryption in Percona Server
Advanced MySql Data-at-Rest Encryption in Percona ServerAdvanced MySql Data-at-Rest Encryption in Percona Server
Advanced MySql Data-at-Rest Encryption in Percona Server
 
Polyglot Persistence Utilizing Open Source Databases as a Swiss Pocket Knife
Polyglot Persistence Utilizing Open Source Databases as a Swiss Pocket KnifePolyglot Persistence Utilizing Open Source Databases as a Swiss Pocket Knife
Polyglot Persistence Utilizing Open Source Databases as a Swiss Pocket Knife
 
Webinar slides: Free Monitoring (on Steroids) for MySQL, MariaDB, PostgreSQL ...
Webinar slides: Free Monitoring (on Steroids) for MySQL, MariaDB, PostgreSQL ...Webinar slides: Free Monitoring (on Steroids) for MySQL, MariaDB, PostgreSQL ...
Webinar slides: Free Monitoring (on Steroids) for MySQL, MariaDB, PostgreSQL ...
 
Webinar slides: An Introduction to Performance Monitoring for PostgreSQL
Webinar slides: An Introduction to Performance Monitoring for PostgreSQLWebinar slides: An Introduction to Performance Monitoring for PostgreSQL
Webinar slides: An Introduction to Performance Monitoring for PostgreSQL
 
Webinar slides: Our Guide to MySQL & MariaDB Performance Tuning
Webinar slides: Our Guide to MySQL & MariaDB Performance TuningWebinar slides: Our Guide to MySQL & MariaDB Performance Tuning
Webinar slides: Our Guide to MySQL & MariaDB Performance Tuning
 
Webinar slides: Migrating to Galera Cluster for MySQL and MariaDB
Webinar slides: Migrating to Galera Cluster for MySQL and MariaDBWebinar slides: Migrating to Galera Cluster for MySQL and MariaDB
Webinar slides: Migrating to Galera Cluster for MySQL and MariaDB
 
Webinar slides: How to Measure Database Availability?
Webinar slides: How to Measure Database Availability?Webinar slides: How to Measure Database Availability?
Webinar slides: How to Measure Database Availability?
 
Webinar slides: Designing Open Source Databases for High Availability
Webinar slides: Designing Open Source Databases for High AvailabilityWebinar slides: Designing Open Source Databases for High Availability
Webinar slides: Designing Open Source Databases for High Availability
 
Webinar slides: How to Get Started with Open Source Database Management
Webinar slides: How to Get Started with Open Source Database ManagementWebinar slides: How to Get Started with Open Source Database Management
Webinar slides: How to Get Started with Open Source Database Management
 
Webinar slides: How to Achieve PCI Compliance for MySQL & MariaDB with Cluste...
Webinar slides: How to Achieve PCI Compliance for MySQL & MariaDB with Cluste...Webinar slides: How to Achieve PCI Compliance for MySQL & MariaDB with Cluste...
Webinar slides: How to Achieve PCI Compliance for MySQL & MariaDB with Cluste...
 

Recently uploaded

Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Servicegwenoracqe6
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...Diya Sharma
 
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607dollysharma2066
 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxellan12
 
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With RoomVIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Roomgirls4nights
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)Damian Radcliffe
 
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024APNIC
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Delhi Call girls
 
Russian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
Russian Call Girls Thane Swara 8617697112 Independent Escort Service ThaneRussian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
Russian Call Girls Thane Swara 8617697112 Independent Escort Service ThaneCall girls in Ahmedabad High profile
 
Challengers I Told Ya ShirtChallengers I Told Ya Shirt
Challengers I Told Ya ShirtChallengers I Told Ya ShirtChallengers I Told Ya ShirtChallengers I Told Ya Shirt
Challengers I Told Ya ShirtChallengers I Told Ya Shirtrahman018755
 
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With RoomVIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Roomdivyansh0kumar0
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebJames Anderson
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Russian Call girls in Dubai +971563133746 Dubai Call girls
Russian  Call girls in Dubai +971563133746 Dubai  Call girlsRussian  Call girls in Dubai +971563133746 Dubai  Call girls
Russian Call girls in Dubai +971563133746 Dubai Call girlsstephieert
 
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...SofiyaSharma5
 

Recently uploaded (20)

Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
 
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
 
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
 
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With RoomVIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)
 
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
 
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Russian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
Russian Call Girls Thane Swara 8617697112 Independent Escort Service ThaneRussian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
Russian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
 
Challengers I Told Ya ShirtChallengers I Told Ya Shirt
Challengers I Told Ya ShirtChallengers I Told Ya ShirtChallengers I Told Ya ShirtChallengers I Told Ya Shirt
Challengers I Told Ya ShirtChallengers I Told Ya Shirt
 
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With RoomVIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Room
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
 
Russian Call girls in Dubai +971563133746 Dubai Call girls
Russian  Call girls in Dubai +971563133746 Dubai  Call girlsRussian  Call girls in Dubai +971563133746 Dubai  Call girls
Russian Call girls in Dubai +971563133746 Dubai Call girls
 
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
 

Migrate Oracle to MariaDB in 40 Steps

  • 1. March 2019 How to Migrate from Oracle DB to MariaDB Bart Oleś, Support Engineer Presenter bart@severalnines.com
  • 2. Copyright 2017 Severalnines AB I'm Jean-Jérôme from the Severalnines Team and I'm your host for today's webinar! Feel free to ask any questions in the Questions section of this application or via the Chat box. You can also contact me directly via the chat box or via email: info@severalnines.com during or after the webinar. Your host & some logistics
  • 3.
  • 5. Copyright 2017 Severalnines AB Automation & Management Deployment ● Deploy a Cluster in Minutes ● On-Prem or Cloud (AWS/Azure/Google) Monitoring ● Systems View with 1 sec Resolution ● DB / OS stats & Performance Advisors ● Configurable Dashboards ● Query Analyzer ● Real-time / historical Management ● Backup Management ● Upgrades & Patching ● Security & Compliance ● Operational Reports ● Automatic Recovery & Repair ● Performance Management ● Automatic Performance Advisors
  • 6. Copyright 2017 Severalnines AB Supported Databases
  • 7. Copyright 2017 Severalnines AB Our Customers
  • 8. Poll 1 Copyright 2019 Severalnines AB Which of the following databases do you run in your production environment: ● MySQL / MariaDB ● PostgreSQL ● SQLServer ● Oracle ● DB2
  • 9. March 2019 Migrating from Oracle to MariaDB Bart Oleś, Support Engineer Presenter bart@severalnines.com
  • 10. Agenda Copyright 2019 Severalnines AB A brief introduction to the platform migration ● Why organizations are moving to open source? ● Oracle to MariaDB - Why migrate? ● Platform support ● Installation process & administration simplicity ● Security and compliance ● Database access and network services ● PL/SQL and Popular Oracle Functions ● Backup process ● Controlling query execution ● Security ● High Availability and replication options for FREE!!! How to Migrate from Oracle to MariaDB Migration ● Planning & development strategy ● Assessment & preliminary check ● Data type mapping ● How to enable PL/SQL Syntax ● Migration tools ● Migration process ● Testing Post-migration ● Monitoring & Alerting ● Performance Management ● Backup Management ● High availability ● Upgrades ● Scaling ● Staff training ● Operational Checklist
  • 11. Copyright 2017 Severalnines AB Copyright 2019 Severalnines AB A brief introduction to the platform migration
  • 12. Why organizations are moving to Open Source Copyright 2019 Severalnines AB Future of Open Source by Black Duck studies ● BETTER TIME TO MARKET 90% of companies say that OSS have greatly impacted innovation and time to market. ● BETTER GROWTH POTENTIAL 80% of companies say that OSS improve margins and grow revenues. ● MORE COMPETITIVE 65% of companies say that OSS has increased their ability to compete. ● INCREASED ADOPTION 88% of companies say that they expect their Open Source adoption to increase in the next two to three years. ● FAVORED SOLUTION More than 66% of companies say that they prefer Open Source over proprietary software solutions. By 2022 - 50% of existing commercial databases will be converted to open source - 70% of new in-house applications will be developed on an open source DB
  • 13. Why migrate to MariaDB? Copyright 2019 Severalnines AB Only Oracle Express Edition is free, but it has very limited features when compared to MariaDB. For extensive features, either Oracle Standard Edition or Oracle Enterprise Edition has to be purchased ● Open Source has matured ○ 24/7 support, SLA’s, features ● MariaDB has gained features ● Migration supporting features ○ SQL_MODE=Oracle ● Migration tools ● Automatic schema migration ● Semi-automatic procedure migration ● Migration Practice within MariaDB ● Scaling out migration projects
  • 14. Installation process and administration simplicity Copyright 2019 Severalnines AB ● Installation process is straightforward comparing to Oracle OUI and DBCA ○ Binary packages ○ RPM packages (MariaDB replace MySQL Community in RDBMs for RedHat and Centos 7) ○ .deb packages ○ MSI packages on Windows ○ Server PKG on macOS ○ Docker image ○ Automation scripts Chef, Puppet etc. ○ Cloud providers ■ MariaDB on AWS Marketplace ■ MariaDB on RDS ■ MariaDB on Azure
  • 15. Installation process and administration simplicity Copyright 2019 Severalnines AB ● Swiss knife: Percona Toolkit ● Monitoring: Percona PMM, VividCortex, Zabbix, Nagios ● ClusterControl (MySQL, MariaDB, Percona, MongoDB, Oracle NDB, MongoDB) ○ Backup Management ○ Monitoring and Alerting ○ Deployment and Scaling ○ Upgrades and Patching ○ Security and Compliance ○ Operational Reporting ○ Configuration Management ○ Automatic Recovery ○ Performance Management ○ Automated Performance Advisors
  • 16. Database access and network services comparison Copyright 2019 Severalnines AB ● MariaDB shares with Oracle good support for database access ○ ODBC/JDBC drivers, access libraries for Perl/Python/PHP ● MariaDB does not have dedicated listener service ● No Oracle SCAN functionality (external load balancer is needed) ● MariaDB lack of “Oracle database networking services” ● No Transparent Application Failover (external load balancer is needed) ● Secure user access with host definition (similar to Oracle Connection Manager)
  • 17. Database access and network services comparison Copyright 2019 Severalnines AB ● MaxScale ● Keepalived Works also with other Load balancers ● HAProxy ● ProxySQL
  • 18. Security Copyright 2019 Severalnines AB To achieve enterprise security compliance standards, MariaDB offers built-in features like: Audit plugin Encryption of data-at-rest Certificates, TSS connection PAM Plugin
  • 19. Controlling query execution Copyright 2019 Severalnines AB ● MariaDB used XtraDB from previous versions until 10.1 and shifted to InnoDB from version 10.2 onwards ● Other storage engines available ○ MyRocks storage engine, Spider for Partitioning ○ MariaDB ColumnStore equivalent of Oracle Database In Memory Column store
  • 20. Controlling query execution Copyright 2019 Severalnines AB By default, MariaDB has the autocommit variable set to ON Explicitly handle transactional statements to take advantage of ROLLBACK or SAVEPOINT Same concept that Oracle uses in terms of commit/rollback/savepoint For explicit transactions, use START TRANSACTION/BEGIN; <SQL STATEMENTS>; COMMIT; syntax START TRANSACTION/BEGIN; <SQL STATEMENTS>; COMMIT; syntax.
  • 21. Dual Table Copyright 2019 Severalnines AB ● MariaDB has dual compatibility with Oracle which is meant for compatibility of databases using a dummy table, namely DUAL ● It operates just the same as MySQL where the FROM clause is not mandatory, so the DUAL table is not necessary. ● DUAL table does not work exactly the same way as it does for Oracle, but for simple SELECT's in MariaDB, this is fine.
  • 22. Dual Table Copyright 2019 Severalnines AB SQL> DESC DUAL; Name Null? Type ----------------------------------------- -------- ---------------------------- DUMMY VARCHAR2(1) SQL> SELECT CURRENT_TIMESTAMP FROM DUAL; CURRENT_TIMESTAMP --------------------------------------------------------------------------- 16-FEB-19 04.16.18.910331 AM +08:00
  • 23. Dual Table Copyright 2019 Severalnines AB MariaDB [test]> DESC DUAL; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'DUAL' at line 1 MariaDB [test]> SELECT CURRENT_TIMESTAMP FROM DUAL; +---------------------+ | CURRENT_TIMESTAMP | +---------------------+ | 2019-02-27 04:11:01 | +---------------------+ 1 row in set (0.000 sec)
  • 24. SYSDATE Copyright 2019 Severalnines AB ● Oracle's SYSDATE function is almost the same as in MariaDB ● MariaDB returns date and time and it’s a function that requires () (close and open parenthesis with no arguments required. To demonstrate this below, here's Oracle and MariaDB on using SYSDATE. ● In Oracle, using plain SYSDATE just returns the date of the day without the time. But to get the time and date, use TO_CHAR to convert the date time into its desired format; whereas in MariaDB, you might not need it to get the date and the time as it returns both.
  • 25. SYSDATE Copyright 2019 Severalnines AB ● SQL> SELECT TO_CHAR (SYSDATE, 'MM-DD-YYYY HH24:MI:SS') "NOW" FROM DUAL; NOW ------------------- 02-16-2019 04:39:00 SQL> SELECT SYSDATE FROM DUAL; SYSDATE --------- 16-FEB-19
  • 26. SYSDATE Copyright 2019 Severalnines AB MariaDB [test]> SELECT SYSDATE() FROM DUAL; +---------------------+ | SYSDATE() | +---------------------+ | 2019-02-27 04:11:57 | +---------------------+ 1 row in set (0.000 sec)
  • 27. TO_DATE Copyright 2019 Severalnines AB MariaDB [test]> SELECT SYSDATE() FROM DUAL; +---------------------+ | SYSDATE() | +---------------------+ | 2019-02-27 04:11:57 | +---------------------+ 1 row in set (0.000 sec)
  • 28. High Availability and replication options for FREE!!! Copyright 2019 Severalnines AB Multi-master, Synchronous Millisecond latency • Dynamic topology changes • Quorum-based consistency • Load balancing and failover (MaxScale, ProxySQL, HAProxy) Master-slave, Multi-source • Asynchronous or semi-synchronous • Multiple replication threads • Parallel replication streams • Delayed replication (configurable)
  • 29. High Availability and replication options for FREE!!! Copyright 2019 Severalnines AB M1 master S1 slave G1 galera G2 galera MaxScale Application Servers Application Servers Application Servers Application Servers Application Servers RW RO G3 galera MariaDB Cluster MaxScale RW RW RW Application Servers Application Servers Application Servers Application Servers Application Servers
  • 30. DR with Hybrid Cloud ● Data on primary site and hot sites have same transactional state ○ Failover instantaneous and automatic ● 3 sites to avoid network partitioning
  • 31. Poll 2 Copyright 2019 Severalnines AB Which of the following replacements of Oracle would you consider for a migration: ● MySQL ● MariaDB ● PostgreSQL ● MongoDB ● Other
  • 32. Copyright 2017 Severalnines AB Copyright 2019 Severalnines AB Migration
  • 33. Planning and development strategy Copyright 2019 Severalnines AB ● A lot of key factors that needs to be considered and addressed. ● Start with Pilot program. One application at a time. ● Migration requires proper project planning and QA. No direct migration! ○ Migration of schema ○ Migration of interfaces ○ Query and functionality analyse ○ Performance load ○ User Acceptance Tests ○ System Integration Tests ● Switchover ● Point of no return
  • 34. Data type mapping Copyright 2019 Severalnines AB MySQL and MariaDB share the same data types available. Although there are variations as to how it is implemented. While MySQL uses the JSON data-type, MariaDB differs as it's just an alias of LONGTEXT data type. MariaDB has also a function, JSON_VALID, which can be used within the CHECK constraint expression. http://www.sqlines.com/oracle-to-mysql http://www.sqlines.com/oracle-to-mariadb
  • 35. How to enable PL/SQL syntax in MariaDB Copyright 2019 Severalnines AB From the version 10.3++, MariaDB supports PL/SQL structures; ● SQL_MODE; Set it in the configuration file and restart the MariaDB Server; ● While running the MariaDB Server with the SQL_MODE as ORACLE: ○ The traditional MariaDB syntax for stored routines won't be available from this point on; ● The best option is to run MariaDB Server with the SQL_MODE set on the configuration file to avoid losing the feature in case of a restart.
  • 36. How to enable PL/SQL syntax in MariaDB Copyright 2019 Severalnines AB MariaDB server when running with sql_mode=ORACLE: ○ VARCHAR2 - a synonym to VARCHAR; ○ NUMBER - a synonym to DECIMAL; ○ DATE (with time portion) - a synonym to MariaDB DATETIME; ○ RAW - a synonym to VARBINARY; ○ CLOB - a synonym to LONGTEXT; ○ BLOB - a synonym to LONGBLOB.
  • 37. How to enable PL/SQL syntax in MariaDB Copyright 2019 Severalnines AB ● EXCEPT / INTERSECT ● Instance Add Column ● ROW OF ● Sequences ● User Defined Types ● Condition Pushdowns ● HAVING into WHERE ● and many more
  • 38. Migration tools Copyright 2019 Severalnines AB ● SQLlines ● AWS conversion tools ● HVR replication ● Inspier
  • 40. Copyright 2017 Severalnines AB Copyright 2019 Severalnines AB Post-migration
  • 41. Monitoring and Alerting Copyright 2019 Severalnines AB ● What to monitor? ○ Database I/O ○ Database transactions ○ System and Network ○ Storage ○ Backups ○ Database Load Balancer ● Hybrid Cloud Environments ● Alerting and Notifications ● Integration with other systems
  • 42. Monitoring and Alerting Copyright 2019 Severalnines AB ● Database Monitoring Tools: ○ PMM (Percona Monitoring and Management ○ BindPlane ○ VividCortex ○ SQL Diagnostic Manager/MONyog ○ ClusterControl ● Other popular tools: ○ Prometheus ○ Graphite ○ TICK Stack From InfluxData ○ OpenTSDB ○ ELK or Elastic Stack
  • 43. Backup Management Copyright 2019 Severalnines AB ● No backup repository built-in (lack of RMAN) ● mariadbbackup (hotbackup) ● mysqldump ● s9s - equivalent to RMAN $ s9s backup --create --backup-method=mysqldump --cluster-id=1 --nodes=10.0.0.5:3306 --backup-directory=/storage/backups Job with ID 4 registered $ s9s backup --list --cluster-id=1 --long --human-readable ID CID STATE OWNER HOSTNAME CREATED SIZE FILENAME 1 1 COMPLETED dba 10.0.0.5 07:21:39 252K mysqldump_2018-11-11_072135_mysqldb.sql.gz 1 1 COMPLETED dba 10.0.0.5 07:21:43 1014 mysqldump_2018-11-11_072135_schema.sql.gz 1 1 COMPLETED dba 10.0.0.5 07:22:03 109M mysqldump_2018-11-11_072135_data.sql.gz 1 1 COMPLETED dba 10.0.0.5 07:22:07 679 mysqldump_2018-11-11_072135_triggerseventsroutines.sql.gz 2 1 COMPLETED dba 10.0.0.5 07:30:20 252K mysqldump_2018-11-11_073016_mysqldb.sql.gz 2 1 COMPLETED dba 10.0.0.5 07:30:24 1014 mysqldump_2018-11-11_073016_schema.sql.gz 2 1 COMPLETED dba 10.0.0.5 07:30:44 109M mysqldump_2018-11-11_073016_data.sql.gz 2 1 COMPLETED dba 10.0.0.5 07:30:49 679 mysqldump_2018-11-11_073016_triggerseventsroutines.sql.gz
  • 44. High Availability - Hybrid Replication Copyright 2019 Severalnines AB ● MariaDB Cluster is compatible with MariaDB replication: ○ MariaDB cluster can operate as MariaDB slave ○ MariaDB cluster can operate as master for MariaDB slave
  • 45. Scaling Copyright 2019 Severalnines AB ● License cost as important aspect of scaling ● Dedicated engines and plugins for scaling ● Ease of scaling ● Automated scaling
  • 46. Staff training Copyright 2019 Severalnines AB ● We Oracle DBA’s love certification ● MariaDB provides a certification exam for DBAs to prove their expertise ○ Proctored and administered by MariaDB ○ Tests DBAs on a variety of tasks, including basic configuration, security operations, backup and restore, and performance tuning.
  • 47. Operational Checklist Copyright 2019 Severalnines AB ● Are queues building up? ● Slow queries? ● Tune queries in the Query Monitor. ● Are backups working? ● Reporting queries? ● Latency issues? ● Random node restarts and failures? ● Upgrade time? ● Did you test new code before putting in production?
  • 48. Belt and Suspenders Copyright 2019 Severalnines AB Apply your backup procedures as normal: - mysqldump with "--single-transaction" - volume snapshot - xtrabackup/mariabackup You may still want to have an async slave connected to the cluster: - Reporting - Disaster Recovery http://www.severalnines.com/blog/asynchronous-replication-galera-clustermysql-server-gtid Point in time recovery http://www.severalnines.com/blog/point-time-recovery-galera-cluster MariaDB AX/TX https://severalnines.com/blog/analytics-mariadb-ax-open-source-columnar-datastore
  • 49. Poll 3 Copyright 2019 Severalnines AB Have you any plans to migrate from Oracle database to an Open Source database? ● Yes, within the next 6 months ● Yes, within 1 year ● Yes, within 2 years ● I do not plan to migrate ● I do not have Oracle database
  • 50. Copyright 2017 Severalnines AB Copyright 2019 Severalnines AB Q & A
  • 51. Additional Resources Copyright 2019 Severalnines AB Blog: Migrating from Oracle database to MariaDB - what you should know Blog: Migrating from Oracle database to MariaDB - deep dive Product Page: ClusterControl for MariaDB Download: ClusterControl Contact: info@severalnines.com