SlideShare uma empresa Scribd logo
1 de 31
Baixar para ler offline
Basel · Baden Bern · Brugg · Lausanne Zurich Düsseldorf · Frankfurt/M. · Freiburg i. Br. Hamburg · Munich · Stuttgart · Vienna
Database-Migration and –Upgrade
using Transportable Tablespaces –
report from a running project
Markus Flechtner
TechEvent April 2010
© 20102
Agenda
§ The setting
§ Why Transportable Tablespaces?
§ The TTS Approach
§ Tuning TTS
§ Problems and challenges
§ Outlook
Life, the universe
and everything.
Database-Migration and -Upgrade using Transportable Tablespaces
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 3
The setting (1) – customer situation
§ Our customer is one of the largest telecommunications equipment
suppliers in the world
§ They develop and sell hardware for cellular networks (GSM)
§ And they sell a „network performance management & capacity
management software“
§ A lot of mobile network operators worldwide
use this software
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 4
The setting (2) – the infrastructure
§ Current platform of the end customer:
ú Server Hardware: PA-RISC
ú Server OS: HP-UX
ú Oracle-Software: 10.2.0.4
ú File Storage: Filesystem
... But the PA-RISC processor architecture will be desupported in
the near future and they have to migrate to a new platform
§ Target platform of the end customer is:
ú Server Hardware: Intel
ú Server OS: Red Hat Linux 64bit
ú Oracle-Software: 11.2
ú RAC
ú File Storage: ASM
© 2010Database-Migration and –Upgrade using Transportable Tablespaces 5
The setting (3) – the project
§ First customer for data migration is the largest customer of the
application:
ú 4 databases, about 50.000 tables per database
ú Each DB Server: 32 CPUs, 96 GB RAM
ú DB Size between 3.2 and 5.5 TB, up to 1 TB redo log amount/day
ú Databases running in NOARCHIVELOG-mode (performance!)
ú New SAN
ú No chance to connect the old SAN to the new servers
ú Just a network connection available (Gigabit ethernet)
ú RAC with 42 nodes planned
§ Requirement:
Maximum downtime of the application of 5 – 6 hours!
© 2010Database-Migration and –Upgrade using Transportable Tablespaces 6
The setting (4) - summary
§ Large databases, running in NOARCHIVELOG-Mode
§ Platform change HP-UX à Linux
§ Oracle Upgrade: 10.2 à 11.2
§ From single instance to RAC
§ From file system to ASM
§ Limited downtime
§ Experiences from the current project will be used for future
customers
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 7
Agenda
§ The setting
§ Why Transportable Tablespaces?
§ The TTS Approach
§ Tuning TTS
§ Problems and challenges
§ Outlook
There's more
than one way to
skin a cat …
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 8
Why Transportable Tablespaces (TTS)?
§ Exp/imp and Datapump è Performance?
§ Tools like „Golden Gate“ or „Quest Shareplex“?
è Additional license costs
§ Streams? è ARCHIVELOG-mode required.
§ Data Guard / Physical Standby
è Not applicable due to platform change from HP-UX à Linux
§ Replication è Materialized views on 50.000 tables?
§ Self-made methods had bad performance
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 9
Agenda
§ The setting
§ Why Transportable Tablespaces?
§ The TTS Approach
§ Tuning TTS
§ Problems and challenges
§ Outlook
Data is always
part of the game.
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 10
The TTS approach (1) - Overview
§ „Transportable Tablespaces“ are used to transfer data between
databases by copying the data files and transfering the
corresponding metadata
§ Starting with Oracle 10g, this works even between different
operating systems (e.g. from HP-UX to Linux), changing the
„endianess“ of a datafile is possible using rman
§ It is a well known procedure
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 11
The TTS approach (2) – Specials
§ The set of tablespaces which is transferred must be „self-
contained“:
ú no reference to another database object in a tablespace outside the
tablespace set
ú This can be checked in advance and is usually no problem when
transferring a complete database
• Sequences, synonyms, temporary tables, privileges, objects
owned by SYSTEM or placed in the SYSTEM-tablespace etc.
must be transferred separately
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 12
The TTS approach (3) – The procedure (simplified)
1. Create an "empty" target database
2. Set the tablespaces to be transferred in „READ ONLY“ mode
3. Export the metadata using Oracle export or Oracle Datapump
(„which objects are in the tablespaces?“)
4. Transfer the export file and the datafiles to the target system.
- If necessary, convert the data files using rman
5. Import the metadata (import or Datapump)
6. Copy additional objects like sequences, synonyms etc. using
Datapump via Network Link
7. Set the tablespaces „READ WRITE“ in the target database
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 13
The TTS approach (4) – File Conversion
§ rman is used to change the endianess of the files and to move
the files from the file system into ASM
ú Big Endianess: HP-UX, Solaris (Sparc), AIX, Linux on zOS or
PowerPC
ú Little Endianess: Windows, Linux (Intel-based), VMS
rman> CONVERT DATAFILE 'copy_of_db_file_in_filesystem'
FROM PLATFORM 'HP-UX (64-bit)'
TO PLATFORM 'Linux x86 64-bit'
FORMAT 'file_location_in_ASM'
PARALLELISM 4;
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 14
Agenda
§ The setting
§ Why Transportable Tablespaces?
§ The TTS Approach
§ Tuning TTS
§ Problems and challenges
§ Outlook
You cannot
increase the
speed of light.
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 15
Tuning TTS (1) - Overview
§ Resize the files to the High Water Mark before the transfer
ú Less data to be read from the source system
ú Less data to be transferred via network
ú Less data to be converted using rman
§ Compression (for data transfer)
§ Parallelization
ú For all operations where possible (background jobs)
ú For transfer & conversion: transfer and convert multiple files in
parallel
§ Automation (using scripts)
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 16
Tuning TTS (2) – Reduce File Size
§ For all datafiles involved (pseudocode):
§ ORA-3297 "file contains used data beyond requested RESIZE
value"
§ Resize can be done "online" during normal business
§ Estimated result: Reduction of the database size to about 85 –
90 % of original size J
§ Files will be resized in target database after transfer
FOR ALL DATAFILES
SET AUTOEXTEND ON MAXSIZE 32G;
REPEAT
RESIZE FILE TO 95% of FILE_SIZE;
UNTIL ORA-3297;
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 17
Tuning TTS (3) – Compression
§ Facts:
ú When transfering a lot of large database files via network, network
bandwidth can be a bottleneck
ú Using a simple „gzip“, typical database files can be compressed to
less than 20% of their original size
Þ Why not use a „compressed transfer“?
§ Like:
ssh source_server "gzip remote_file –c"|gunzip >local_file
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 18
Tuning TTS (4) – Compression
Theoretical network bandwidth between old DB-Server and
new RAC-System
1 Gigabit/second
This is about 450 GB/hour
Let‘s take 75% of this theoretical value 337 GB/hour
Database Size (largest DB, without resize) 5.500 GB
Without SYSTEM- , SYSAUX- and UNDO-Tablespace 5.000 GB
Resized to 90 % original size 4.500 GB
Compressed to approx. 25% of original size 1.125 GB
Theoretical duration of the „compressed transfer“ 3,4 hours
+ metadata export/import
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 19
Tuning TTS (5) – Parallelization
§ Level 1:
ú Transferring and converting multiple files to one node in parallel
Source-Server
(32 CPU)
One RAC node Target Database
(on ASM)
File transfer
(ssh / gzip)
Conversion
(rman)
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 20
Tuning TTS (6) – Parallelization
§ Level 2:
ú Let's use the RAC and use all nodes for transfer & conversion
Source-Server
(32 CPU)
RAC nodes Target Database
(on ASM)
File transfer
(ssh / gzip)
Conversion
(rman)
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 21
Tuning TTS (7) – Automation
§ Basic database migration using TTS is a well-documented
straight-forward operation which can be scripted
§ One RAC node is the "target master" which coordinates the work
and starts all the scripts on the other nodes
§ Communication between the nodes and the scripts is done via a
table in the target database
ú contains information on file transfer status
ú contains information on tablespace transfer status (metadata)
ú files which could not be copied or converted using rman get an „ERROR“-
status and have to be transferred again
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 22
Agenda
§ The setting
§ Why Transportable Tablespaces?
§ The TTS Approach
§ Tuning TTS
§ Problems and challenges
§ Outlook
It‘s not as simple
as that!
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 23
Problems and challenges (1) – Metadata Export
§ In the lab exporting the metadata for the whole database using
DataPump took 12 hours
§ è Oracle said: "Use Original Export"
§ With "Original Export", it took just 6 hours J
§ But running the metadata export using "Original Export" in
another database resulted in an:
EXP-0008 / ORA-29336: Internal error … from DBMS_PLUGTS
§ è Oracle said: "Use DataPump"
§ L
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 24
Problems and challenges (2) – Metadata Export
§ Solution: Create self-contained subsets of the tablespaces and
export them in parallel using datapump
§ Preparation (Pseudocode):
§ The "grouping operation" can be very time-consuming (450+
tablespaces), but can be executed during normal operation
REPEAT
CREATE A NEW GROUP;
ADD TABLESPACE TO NEW GROUP;
REPEAT
CHECK TS-GROUP FOR SELFCONTAINMENT
(DBMS_TTS.TRANSPORT_CHECK_SET)
IF THERE ARE ROWS IN SYS.TRANSPORT_SET_VIOLATIONS
ADD THESE TABLESPACES TO GROUP;
UNTIL SYS.TRANSPORT_SET_VIOLATIONS IS EMPTY;
UNTIL ALL TABLESPACES ARE ASSIGNED TO A GROUP;
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 25
Problems and challenges (3) – Metadata Export
§ The „grouping operation“ resulted in about 120 small
tablespaces groups
§ These tablespace groups are grouped into larger "metagroups"
and every target node transfers a given number of metagroups:
ú 1. export metadata (in Background)
ú 2. transfer and convert datafiles (multiple jobs in parallel)
ú 3. import metadata
§ It takes just about 1,5 hours for all export jobs to complete J
§ Status information is stored in the database
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 26
Problems and challenges (4) – Job Coordination
§ Coordination of all the jobs between by the "target master"-node
ú Keeping control over all the parallel background jobs on source
server, RAC nodes, etc.
ú Communication via database table
§ The number of parallel transfer jobs is limited by:
ú CPU power on source
ú available disk space on the RAC nodes
èjob monitoring needed to avoid overloading or space problems
§ Error handling / Restart
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 27
Agenda
§ The setting
§ Why Transportable Tablespaces?
§ The TTS Approach
§ Tuning TTS
§ Problems and challenges
§ Outlook
What has the
future in store for
us?
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 28
Outlook (1) – The Procedure
§ The project is still ongoing ..
§ The procedure works J
§ The lab is too small for performance tests:
ú Target cluster has 4 nodes with 2 Quadcores and 32 GB RAM
ú But source server has just 2 CPUs and 8 GB RAM
ú Running more than 8 transfer jobs in parallel (2 per RAC node) kills
the source server
§ (End-)customer has a larger server (8 CPUs), but no RAC at the
moment L
§ Performance not tested so far …
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 29
Outlook (2) – The Plan
§ We're pretty confident that the procedure will work in production
§ For the small databases (2 databases with less than 4 TB) we'll
use the TTS-approach only
§ Depending on the results with these databases, we can change
the strategy for the larger databases:
ú 1. Use an offline backup of the database (volume split) as a source
for a TTS-based data transfer
ú 2. Use an already existing self-developed replication based on the
timestamps in the records for the remaining data
§ Plan B: Use "Golden Gate"
© 2010Database-Migration and -Upgrade using Transportable Tablespaces 30
References
§ Oracle MAA-Whitepaper „Platform Migration using Transportable
Tablespaces“
http://www.oracle.com/technology/deploy/availability/pdf/maa_wp_11g_platformmigrationtts.pdf
§ Oracle MAA-Whitepaper „Database Upgrade using
Transportable Tablespaces
http://www.oracle.com/technology/deploy/availability/pdf/maa_wp_11g_upgradetts.pdf
§ "Minimum Downtime Upgrade with Transportable Tablespaces"
http://blogs.oracle.com/UPDATE/
§ "Moving Oracle Databases Across Platforms without
Export/Import"
http://www.dbspecialists.com/files/presentations/changing_platforms.ppt
Basel · Baden Bern · Brugg · Lausanne Zurich Düsseldorf · Frankfurt/M. · Freiburg i. Br. Hamburg · Munich · Stuttgart · Vienna
Thanks for your attention!
.. any questions?

Mais conteúdo relacionado

Mais procurados

Mais procurados (20)

DOAG Oracle Unified Audit in Multitenant Environments
DOAG Oracle Unified Audit in Multitenant EnvironmentsDOAG Oracle Unified Audit in Multitenant Environments
DOAG Oracle Unified Audit in Multitenant Environments
 
Scylla Summit 2022: Scylla 5.0 New Features, Part 1
Scylla Summit 2022: Scylla 5.0 New Features, Part 1Scylla Summit 2022: Scylla 5.0 New Features, Part 1
Scylla Summit 2022: Scylla 5.0 New Features, Part 1
 
Exadata SMART Monitoring - OEM 13c
Exadata SMART Monitoring - OEM 13cExadata SMART Monitoring - OEM 13c
Exadata SMART Monitoring - OEM 13c
 
Tanel Poder Oracle Scripts and Tools (2010)
Tanel Poder Oracle Scripts and Tools (2010)Tanel Poder Oracle Scripts and Tools (2010)
Tanel Poder Oracle Scripts and Tools (2010)
 
Load Balancing MySQL with HAProxy - Slides
Load Balancing MySQL with HAProxy - SlidesLoad Balancing MySQL with HAProxy - Slides
Load Balancing MySQL with HAProxy - Slides
 
My SYSAUX tablespace is full - please help
My SYSAUX tablespace is full - please helpMy SYSAUX tablespace is full - please help
My SYSAUX tablespace is full - please help
 
Apache Flink Hands On
Apache Flink Hands OnApache Flink Hands On
Apache Flink Hands On
 
Oracle Multitenant meets Oracle RAC - IOUG 2014 Version
Oracle Multitenant meets Oracle RAC - IOUG 2014 VersionOracle Multitenant meets Oracle RAC - IOUG 2014 Version
Oracle Multitenant meets Oracle RAC - IOUG 2014 Version
 
MySQL operator for_kubernetes
MySQL operator for_kubernetesMySQL operator for_kubernetes
MySQL operator for_kubernetes
 
Dataguard presentation
Dataguard presentationDataguard presentation
Dataguard presentation
 
MySQL8.0_performance_schema.pptx
MySQL8.0_performance_schema.pptxMySQL8.0_performance_schema.pptx
MySQL8.0_performance_schema.pptx
 
Oracle Data Guard
Oracle Data GuardOracle Data Guard
Oracle Data Guard
 
Understanding oracle rac internals part 2 - slides
Understanding oracle rac internals   part 2 - slidesUnderstanding oracle rac internals   part 2 - slides
Understanding oracle rac internals part 2 - slides
 
PostgreSQL Replication High Availability Methods
PostgreSQL Replication High Availability MethodsPostgreSQL Replication High Availability Methods
PostgreSQL Replication High Availability Methods
 
DB Time, Average Active Sessions, and ASH Math - Oracle performance fundamentals
DB Time, Average Active Sessions, and ASH Math - Oracle performance fundamentalsDB Time, Average Active Sessions, and ASH Math - Oracle performance fundamentals
DB Time, Average Active Sessions, and ASH Math - Oracle performance fundamentals
 
Oracle Enterprise Manager
Oracle Enterprise ManagerOracle Enterprise Manager
Oracle Enterprise Manager
 
Migrating your clusters and workloads from Hadoop 2 to Hadoop 3
Migrating your clusters and workloads from Hadoop 2 to Hadoop 3Migrating your clusters and workloads from Hadoop 2 to Hadoop 3
Migrating your clusters and workloads from Hadoop 2 to Hadoop 3
 
How Netflix Tunes EC2 Instances for Performance
How Netflix Tunes EC2 Instances for PerformanceHow Netflix Tunes EC2 Instances for Performance
How Netflix Tunes EC2 Instances for Performance
 
Mastering PostgreSQL Administration
Mastering PostgreSQL AdministrationMastering PostgreSQL Administration
Mastering PostgreSQL Administration
 
How to Use EXAchk Effectively to Manage Exadata Environments
How to Use EXAchk Effectively to Manage Exadata EnvironmentsHow to Use EXAchk Effectively to Manage Exadata Environments
How to Use EXAchk Effectively to Manage Exadata Environments
 

Destaque

Oracle10g new features
Oracle10g  new featuresOracle10g  new features
Oracle10g new features
Tanvi_Agrawal
 
Howto exportandimportstatisti
Howto exportandimportstatistiHowto exportandimportstatisti
Howto exportandimportstatisti
sivacse09
 
Oracle data pump
Oracle data pumpOracle data pump
Oracle data pump
marcxav72
 
Oracle backup and recovery
Oracle backup and recoveryOracle backup and recovery
Oracle backup and recovery
Yogiji Creations
 
Dba 3+ exp qus
Dba 3+ exp qusDba 3+ exp qus
Dba 3+ exp qus
krreddy21
 
Premio compartir "Celmiranos Conectados Con Calidad Educativa"
Premio compartir "Celmiranos Conectados Con Calidad Educativa"Premio compartir "Celmiranos Conectados Con Calidad Educativa"
Premio compartir "Celmiranos Conectados Con Calidad Educativa"
Yuliet2627
 
Sandra Odlund Resume 1
Sandra Odlund Resume 1Sandra Odlund Resume 1
Sandra Odlund Resume 1
Sandy Odlund
 

Destaque (20)

Oracle10g new features
Oracle10g  new featuresOracle10g  new features
Oracle10g new features
 
Exportversions
ExportversionsExportversions
Exportversions
 
Rajasekar_ORACLE_DBA
Rajasekar_ORACLE_DBARajasekar_ORACLE_DBA
Rajasekar_ORACLE_DBA
 
Oracle 11g expdp alib oracle 10g import etmek
Oracle 11g expdp alib oracle 10g import etmekOracle 11g expdp alib oracle 10g import etmek
Oracle 11g expdp alib oracle 10g import etmek
 
11g New Features and Enhancements for Backup and Recovery
11g New Features and Enhancements for Backup and Recovery11g New Features and Enhancements for Backup and Recovery
11g New Features and Enhancements for Backup and Recovery
 
Howto exportandimportstatisti
Howto exportandimportstatistiHowto exportandimportstatisti
Howto exportandimportstatisti
 
Setup oracle golden gate 11g replication
Setup oracle golden gate 11g replicationSetup oracle golden gate 11g replication
Setup oracle golden gate 11g replication
 
Less17 Util
Less17  UtilLess17  Util
Less17 Util
 
Presentation indexing new features oracle 11g release 1 and release 2
Presentation    indexing new features oracle 11g release 1 and release 2Presentation    indexing new features oracle 11g release 1 and release 2
Presentation indexing new features oracle 11g release 1 and release 2
 
Oracle data pump
Oracle data pumpOracle data pump
Oracle data pump
 
Oracle backup and recovery
Oracle backup and recoveryOracle backup and recovery
Oracle backup and recovery
 
Dba 3+ exp qus
Dba 3+ exp qusDba 3+ exp qus
Dba 3+ exp qus
 
Oracle Complete Interview Questions
Oracle Complete Interview QuestionsOracle Complete Interview Questions
Oracle Complete Interview Questions
 
03 backup-and-recovery
03 backup-and-recovery03 backup-and-recovery
03 backup-and-recovery
 
Nunca sem esperança (meimei)
Nunca sem esperança (meimei)Nunca sem esperança (meimei)
Nunca sem esperança (meimei)
 
Liderança com jesus 1
Liderança com jesus 1Liderança com jesus 1
Liderança com jesus 1
 
Mokolóton Extraterrestre
Mokolóton ExtraterrestreMokolóton Extraterrestre
Mokolóton Extraterrestre
 
Premio compartir "Celmiranos Conectados Con Calidad Educativa"
Premio compartir "Celmiranos Conectados Con Calidad Educativa"Premio compartir "Celmiranos Conectados Con Calidad Educativa"
Premio compartir "Celmiranos Conectados Con Calidad Educativa"
 
Sandra Odlund Resume 1
Sandra Odlund Resume 1Sandra Odlund Resume 1
Sandra Odlund Resume 1
 
Wiki
WikiWiki
Wiki
 

Semelhante a Database-Migration and -Upgrade with Transportable Tablespaces

Datastage parallell jobs vs datastage server jobs
Datastage parallell jobs vs datastage server jobsDatastage parallell jobs vs datastage server jobs
Datastage parallell jobs vs datastage server jobs
shanker_uma
 
Compact, Compress, De-Duplicate (DAOS)
Compact, Compress, De-Duplicate (DAOS)Compact, Compress, De-Duplicate (DAOS)
Compact, Compress, De-Duplicate (DAOS)
Ulrich Krause
 

Semelhante a Database-Migration and -Upgrade with Transportable Tablespaces (20)

Gestione gerarchica dei dati con SUSE Enterprise Storage e HPE DMF
Gestione gerarchica dei dati con SUSE Enterprise Storage e HPE DMFGestione gerarchica dei dati con SUSE Enterprise Storage e HPE DMF
Gestione gerarchica dei dati con SUSE Enterprise Storage e HPE DMF
 
Hadoop 3 @ Hadoop Summit San Jose 2017
Hadoop 3 @ Hadoop Summit San Jose 2017Hadoop 3 @ Hadoop Summit San Jose 2017
Hadoop 3 @ Hadoop Summit San Jose 2017
 
Apache Hadoop 3.0 Community Update
Apache Hadoop 3.0 Community UpdateApache Hadoop 3.0 Community Update
Apache Hadoop 3.0 Community Update
 
Processing Big Data: An Introduction to Data Intensive Computing
Processing Big Data: An Introduction to Data Intensive ComputingProcessing Big Data: An Introduction to Data Intensive Computing
Processing Big Data: An Introduction to Data Intensive Computing
 
The Apache Spark config behind the indsutry's first 100TB Spark SQL benchmark
The Apache Spark config behind the indsutry's first 100TB Spark SQL benchmarkThe Apache Spark config behind the indsutry's first 100TB Spark SQL benchmark
The Apache Spark config behind the indsutry's first 100TB Spark SQL benchmark
 
SAP HANA System Replication (HSR) versus SAP Replication Server (SRS)
SAP HANA System Replication (HSR) versus SAP Replication Server (SRS)SAP HANA System Replication (HSR) versus SAP Replication Server (SRS)
SAP HANA System Replication (HSR) versus SAP Replication Server (SRS)
 
Hadoop World 2011: Hadoop Network and Compute Architecture Considerations - J...
Hadoop World 2011: Hadoop Network and Compute Architecture Considerations - J...Hadoop World 2011: Hadoop Network and Compute Architecture Considerations - J...
Hadoop World 2011: Hadoop Network and Compute Architecture Considerations - J...
 
Hadoop 3 in a Nutshell
Hadoop 3 in a NutshellHadoop 3 in a Nutshell
Hadoop 3 in a Nutshell
 
Apache Hadoop 3.0 Community Update
Apache Hadoop 3.0 Community UpdateApache Hadoop 3.0 Community Update
Apache Hadoop 3.0 Community Update
 
HPC DAY 2017 | HPE Storage and Data Management for Big Data
HPC DAY 2017 | HPE Storage and Data Management for Big DataHPC DAY 2017 | HPE Storage and Data Management for Big Data
HPC DAY 2017 | HPE Storage and Data Management for Big Data
 
DPDK Summit 2015 - Aspera - Charles Shiflett
DPDK Summit 2015 - Aspera - Charles ShiflettDPDK Summit 2015 - Aspera - Charles Shiflett
DPDK Summit 2015 - Aspera - Charles Shiflett
 
Best Practices for Migrating Your Data Warehouse to Amazon Redshift
Best Practices for Migrating Your Data Warehouse to Amazon RedshiftBest Practices for Migrating Your Data Warehouse to Amazon Redshift
Best Practices for Migrating Your Data Warehouse to Amazon Redshift
 
Building a high-performance data lake analytics engine at Alibaba Cloud with ...
Building a high-performance data lake analytics engine at Alibaba Cloud with ...Building a high-performance data lake analytics engine at Alibaba Cloud with ...
Building a high-performance data lake analytics engine at Alibaba Cloud with ...
 
DatEngConf SF16 - Apache Kudu: Fast Analytics on Fast Data
DatEngConf SF16 - Apache Kudu: Fast Analytics on Fast DataDatEngConf SF16 - Apache Kudu: Fast Analytics on Fast Data
DatEngConf SF16 - Apache Kudu: Fast Analytics on Fast Data
 
Sql server 2016 it just runs faster sql bits 2017 edition
Sql server 2016 it just runs faster   sql bits 2017 editionSql server 2016 it just runs faster   sql bits 2017 edition
Sql server 2016 it just runs faster sql bits 2017 edition
 
Datastage parallell jobs vs datastage server jobs
Datastage parallell jobs vs datastage server jobsDatastage parallell jobs vs datastage server jobs
Datastage parallell jobs vs datastage server jobs
 
Hadoop Meetup Jan 2019 - Overview of Ozone
Hadoop Meetup Jan 2019 - Overview of OzoneHadoop Meetup Jan 2019 - Overview of Ozone
Hadoop Meetup Jan 2019 - Overview of Ozone
 
Hdfs 2016-hadoop-summit-san-jose-v4
Hdfs 2016-hadoop-summit-san-jose-v4Hdfs 2016-hadoop-summit-san-jose-v4
Hdfs 2016-hadoop-summit-san-jose-v4
 
Compact, Compress, De-Duplicate (DAOS)
Compact, Compress, De-Duplicate (DAOS)Compact, Compress, De-Duplicate (DAOS)
Compact, Compress, De-Duplicate (DAOS)
 
getFamiliarWithHadoop
getFamiliarWithHadoopgetFamiliarWithHadoop
getFamiliarWithHadoop
 

Mais de Markus Flechtner

Mais de Markus Flechtner (20)

My SYSAUX tablespace is full, please
My SYSAUX tablespace is full, pleaseMy SYSAUX tablespace is full, please
My SYSAUX tablespace is full, please
 
Rolle Rückwärts - Backported Features in Oracle Database 19c
Rolle Rückwärts - Backported Features in Oracle Database 19cRolle Rückwärts - Backported Features in Oracle Database 19c
Rolle Rückwärts - Backported Features in Oracle Database 19c
 
Oracle vs. PostgreSQL - Unterschiede in 45 Minuten
Oracle vs. PostgreSQL - Unterschiede in 45 MinutenOracle vs. PostgreSQL - Unterschiede in 45 Minuten
Oracle vs. PostgreSQL - Unterschiede in 45 Minuten
 
Container Only - Neue Features für Multitenant in Oracle 21c
Container Only - Neue Features für Multitenant in Oracle 21cContainer Only - Neue Features für Multitenant in Oracle 21c
Container Only - Neue Features für Multitenant in Oracle 21c
 
Oracle Datenbank-Architektur
Oracle Datenbank-ArchitekturOracle Datenbank-Architektur
Oracle Datenbank-Architektur
 
Wie kommt der Client zur Datenbank?
Wie kommt der Client zur Datenbank?Wie kommt der Client zur Datenbank?
Wie kommt der Client zur Datenbank?
 
OraChk
OraChkOraChk
OraChk
 
TFA - Trace File Analyzer Collector
TFA - Trace File Analyzer CollectorTFA - Trace File Analyzer Collector
TFA - Trace File Analyzer Collector
 
High Availability for Oracle SE2
High Availability for Oracle SE2High Availability for Oracle SE2
High Availability for Oracle SE2
 
Datenbank-Hausputz für Einsteiger
Datenbank-Hausputz für EinsteigerDatenbank-Hausputz für Einsteiger
Datenbank-Hausputz für Einsteiger
 
Should I stay or should I go?
Should I stay or should I go?Should I stay or should I go?
Should I stay or should I go?
 
Privilege Analysis with the Oracle Database
Privilege Analysis with the Oracle DatabasePrivilege Analysis with the Oracle Database
Privilege Analysis with the Oracle Database
 
New Features for Multitenant in Oracle Database 21c
New Features for Multitenant in Oracle Database 21cNew Features for Multitenant in Oracle Database 21c
New Features for Multitenant in Oracle Database 21c
 
Oracle - Checklist for performance issues
Oracle - Checklist for performance issuesOracle - Checklist for performance issues
Oracle - Checklist for performance issues
 
Einführung in den SQL-Developer
Einführung in den SQL-DeveloperEinführung in den SQL-Developer
Einführung in den SQL-Developer
 
Oracle Database: Checklist Connection Issues
Oracle Database: Checklist Connection IssuesOracle Database: Checklist Connection Issues
Oracle Database: Checklist Connection Issues
 
Checklist for Upgrades and Migrations
Checklist for Upgrades and MigrationsChecklist for Upgrades and Migrations
Checklist for Upgrades and Migrations
 
Codd & ACID - ein Ausflug in die Datenbank-Theorie und Geschichte
Codd & ACID - ein Ausflug in die Datenbank-Theorie und GeschichteCodd & ACID - ein Ausflug in die Datenbank-Theorie und Geschichte
Codd & ACID - ein Ausflug in die Datenbank-Theorie und Geschichte
 
Datenbank-Selbstverwaltung - Das Oracle-Data-Dictionary
Datenbank-Selbstverwaltung - Das Oracle-Data-DictionaryDatenbank-Selbstverwaltung - Das Oracle-Data-Dictionary
Datenbank-Selbstverwaltung - Das Oracle-Data-Dictionary
 
Die Datenbank ist nicht immer Schuld - Gründe warum Datenbank-Migration schei...
Die Datenbank ist nicht immer Schuld - Gründe warum Datenbank-Migration schei...Die Datenbank ist nicht immer Schuld - Gründe warum Datenbank-Migration schei...
Die Datenbank ist nicht immer Schuld - Gründe warum Datenbank-Migration schei...
 

Último

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 

Último (20)

Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 

Database-Migration and -Upgrade with Transportable Tablespaces

  • 1. Basel · Baden Bern · Brugg · Lausanne Zurich Düsseldorf · Frankfurt/M. · Freiburg i. Br. Hamburg · Munich · Stuttgart · Vienna Database-Migration and –Upgrade using Transportable Tablespaces – report from a running project Markus Flechtner TechEvent April 2010
  • 2. © 20102 Agenda § The setting § Why Transportable Tablespaces? § The TTS Approach § Tuning TTS § Problems and challenges § Outlook Life, the universe and everything. Database-Migration and -Upgrade using Transportable Tablespaces
  • 3. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 3 The setting (1) – customer situation § Our customer is one of the largest telecommunications equipment suppliers in the world § They develop and sell hardware for cellular networks (GSM) § And they sell a „network performance management & capacity management software“ § A lot of mobile network operators worldwide use this software
  • 4. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 4 The setting (2) – the infrastructure § Current platform of the end customer: ú Server Hardware: PA-RISC ú Server OS: HP-UX ú Oracle-Software: 10.2.0.4 ú File Storage: Filesystem ... But the PA-RISC processor architecture will be desupported in the near future and they have to migrate to a new platform § Target platform of the end customer is: ú Server Hardware: Intel ú Server OS: Red Hat Linux 64bit ú Oracle-Software: 11.2 ú RAC ú File Storage: ASM
  • 5. © 2010Database-Migration and –Upgrade using Transportable Tablespaces 5 The setting (3) – the project § First customer for data migration is the largest customer of the application: ú 4 databases, about 50.000 tables per database ú Each DB Server: 32 CPUs, 96 GB RAM ú DB Size between 3.2 and 5.5 TB, up to 1 TB redo log amount/day ú Databases running in NOARCHIVELOG-mode (performance!) ú New SAN ú No chance to connect the old SAN to the new servers ú Just a network connection available (Gigabit ethernet) ú RAC with 42 nodes planned § Requirement: Maximum downtime of the application of 5 – 6 hours!
  • 6. © 2010Database-Migration and –Upgrade using Transportable Tablespaces 6 The setting (4) - summary § Large databases, running in NOARCHIVELOG-Mode § Platform change HP-UX à Linux § Oracle Upgrade: 10.2 à 11.2 § From single instance to RAC § From file system to ASM § Limited downtime § Experiences from the current project will be used for future customers
  • 7. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 7 Agenda § The setting § Why Transportable Tablespaces? § The TTS Approach § Tuning TTS § Problems and challenges § Outlook There's more than one way to skin a cat …
  • 8. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 8 Why Transportable Tablespaces (TTS)? § Exp/imp and Datapump è Performance? § Tools like „Golden Gate“ or „Quest Shareplex“? è Additional license costs § Streams? è ARCHIVELOG-mode required. § Data Guard / Physical Standby è Not applicable due to platform change from HP-UX à Linux § Replication è Materialized views on 50.000 tables? § Self-made methods had bad performance
  • 9. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 9 Agenda § The setting § Why Transportable Tablespaces? § The TTS Approach § Tuning TTS § Problems and challenges § Outlook Data is always part of the game.
  • 10. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 10 The TTS approach (1) - Overview § „Transportable Tablespaces“ are used to transfer data between databases by copying the data files and transfering the corresponding metadata § Starting with Oracle 10g, this works even between different operating systems (e.g. from HP-UX to Linux), changing the „endianess“ of a datafile is possible using rman § It is a well known procedure
  • 11. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 11 The TTS approach (2) – Specials § The set of tablespaces which is transferred must be „self- contained“: ú no reference to another database object in a tablespace outside the tablespace set ú This can be checked in advance and is usually no problem when transferring a complete database • Sequences, synonyms, temporary tables, privileges, objects owned by SYSTEM or placed in the SYSTEM-tablespace etc. must be transferred separately
  • 12. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 12 The TTS approach (3) – The procedure (simplified) 1. Create an "empty" target database 2. Set the tablespaces to be transferred in „READ ONLY“ mode 3. Export the metadata using Oracle export or Oracle Datapump („which objects are in the tablespaces?“) 4. Transfer the export file and the datafiles to the target system. - If necessary, convert the data files using rman 5. Import the metadata (import or Datapump) 6. Copy additional objects like sequences, synonyms etc. using Datapump via Network Link 7. Set the tablespaces „READ WRITE“ in the target database
  • 13. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 13 The TTS approach (4) – File Conversion § rman is used to change the endianess of the files and to move the files from the file system into ASM ú Big Endianess: HP-UX, Solaris (Sparc), AIX, Linux on zOS or PowerPC ú Little Endianess: Windows, Linux (Intel-based), VMS rman> CONVERT DATAFILE 'copy_of_db_file_in_filesystem' FROM PLATFORM 'HP-UX (64-bit)' TO PLATFORM 'Linux x86 64-bit' FORMAT 'file_location_in_ASM' PARALLELISM 4;
  • 14. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 14 Agenda § The setting § Why Transportable Tablespaces? § The TTS Approach § Tuning TTS § Problems and challenges § Outlook You cannot increase the speed of light.
  • 15. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 15 Tuning TTS (1) - Overview § Resize the files to the High Water Mark before the transfer ú Less data to be read from the source system ú Less data to be transferred via network ú Less data to be converted using rman § Compression (for data transfer) § Parallelization ú For all operations where possible (background jobs) ú For transfer & conversion: transfer and convert multiple files in parallel § Automation (using scripts)
  • 16. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 16 Tuning TTS (2) – Reduce File Size § For all datafiles involved (pseudocode): § ORA-3297 "file contains used data beyond requested RESIZE value" § Resize can be done "online" during normal business § Estimated result: Reduction of the database size to about 85 – 90 % of original size J § Files will be resized in target database after transfer FOR ALL DATAFILES SET AUTOEXTEND ON MAXSIZE 32G; REPEAT RESIZE FILE TO 95% of FILE_SIZE; UNTIL ORA-3297;
  • 17. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 17 Tuning TTS (3) – Compression § Facts: ú When transfering a lot of large database files via network, network bandwidth can be a bottleneck ú Using a simple „gzip“, typical database files can be compressed to less than 20% of their original size Þ Why not use a „compressed transfer“? § Like: ssh source_server "gzip remote_file –c"|gunzip >local_file
  • 18. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 18 Tuning TTS (4) – Compression Theoretical network bandwidth between old DB-Server and new RAC-System 1 Gigabit/second This is about 450 GB/hour Let‘s take 75% of this theoretical value 337 GB/hour Database Size (largest DB, without resize) 5.500 GB Without SYSTEM- , SYSAUX- and UNDO-Tablespace 5.000 GB Resized to 90 % original size 4.500 GB Compressed to approx. 25% of original size 1.125 GB Theoretical duration of the „compressed transfer“ 3,4 hours + metadata export/import
  • 19. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 19 Tuning TTS (5) – Parallelization § Level 1: ú Transferring and converting multiple files to one node in parallel Source-Server (32 CPU) One RAC node Target Database (on ASM) File transfer (ssh / gzip) Conversion (rman)
  • 20. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 20 Tuning TTS (6) – Parallelization § Level 2: ú Let's use the RAC and use all nodes for transfer & conversion Source-Server (32 CPU) RAC nodes Target Database (on ASM) File transfer (ssh / gzip) Conversion (rman)
  • 21. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 21 Tuning TTS (7) – Automation § Basic database migration using TTS is a well-documented straight-forward operation which can be scripted § One RAC node is the "target master" which coordinates the work and starts all the scripts on the other nodes § Communication between the nodes and the scripts is done via a table in the target database ú contains information on file transfer status ú contains information on tablespace transfer status (metadata) ú files which could not be copied or converted using rman get an „ERROR“- status and have to be transferred again
  • 22. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 22 Agenda § The setting § Why Transportable Tablespaces? § The TTS Approach § Tuning TTS § Problems and challenges § Outlook It‘s not as simple as that!
  • 23. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 23 Problems and challenges (1) – Metadata Export § In the lab exporting the metadata for the whole database using DataPump took 12 hours § è Oracle said: "Use Original Export" § With "Original Export", it took just 6 hours J § But running the metadata export using "Original Export" in another database resulted in an: EXP-0008 / ORA-29336: Internal error … from DBMS_PLUGTS § è Oracle said: "Use DataPump" § L
  • 24. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 24 Problems and challenges (2) – Metadata Export § Solution: Create self-contained subsets of the tablespaces and export them in parallel using datapump § Preparation (Pseudocode): § The "grouping operation" can be very time-consuming (450+ tablespaces), but can be executed during normal operation REPEAT CREATE A NEW GROUP; ADD TABLESPACE TO NEW GROUP; REPEAT CHECK TS-GROUP FOR SELFCONTAINMENT (DBMS_TTS.TRANSPORT_CHECK_SET) IF THERE ARE ROWS IN SYS.TRANSPORT_SET_VIOLATIONS ADD THESE TABLESPACES TO GROUP; UNTIL SYS.TRANSPORT_SET_VIOLATIONS IS EMPTY; UNTIL ALL TABLESPACES ARE ASSIGNED TO A GROUP;
  • 25. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 25 Problems and challenges (3) – Metadata Export § The „grouping operation“ resulted in about 120 small tablespaces groups § These tablespace groups are grouped into larger "metagroups" and every target node transfers a given number of metagroups: ú 1. export metadata (in Background) ú 2. transfer and convert datafiles (multiple jobs in parallel) ú 3. import metadata § It takes just about 1,5 hours for all export jobs to complete J § Status information is stored in the database
  • 26. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 26 Problems and challenges (4) – Job Coordination § Coordination of all the jobs between by the "target master"-node ú Keeping control over all the parallel background jobs on source server, RAC nodes, etc. ú Communication via database table § The number of parallel transfer jobs is limited by: ú CPU power on source ú available disk space on the RAC nodes èjob monitoring needed to avoid overloading or space problems § Error handling / Restart
  • 27. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 27 Agenda § The setting § Why Transportable Tablespaces? § The TTS Approach § Tuning TTS § Problems and challenges § Outlook What has the future in store for us?
  • 28. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 28 Outlook (1) – The Procedure § The project is still ongoing .. § The procedure works J § The lab is too small for performance tests: ú Target cluster has 4 nodes with 2 Quadcores and 32 GB RAM ú But source server has just 2 CPUs and 8 GB RAM ú Running more than 8 transfer jobs in parallel (2 per RAC node) kills the source server § (End-)customer has a larger server (8 CPUs), but no RAC at the moment L § Performance not tested so far …
  • 29. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 29 Outlook (2) – The Plan § We're pretty confident that the procedure will work in production § For the small databases (2 databases with less than 4 TB) we'll use the TTS-approach only § Depending on the results with these databases, we can change the strategy for the larger databases: ú 1. Use an offline backup of the database (volume split) as a source for a TTS-based data transfer ú 2. Use an already existing self-developed replication based on the timestamps in the records for the remaining data § Plan B: Use "Golden Gate"
  • 30. © 2010Database-Migration and -Upgrade using Transportable Tablespaces 30 References § Oracle MAA-Whitepaper „Platform Migration using Transportable Tablespaces“ http://www.oracle.com/technology/deploy/availability/pdf/maa_wp_11g_platformmigrationtts.pdf § Oracle MAA-Whitepaper „Database Upgrade using Transportable Tablespaces http://www.oracle.com/technology/deploy/availability/pdf/maa_wp_11g_upgradetts.pdf § "Minimum Downtime Upgrade with Transportable Tablespaces" http://blogs.oracle.com/UPDATE/ § "Moving Oracle Databases Across Platforms without Export/Import" http://www.dbspecialists.com/files/presentations/changing_platforms.ppt
  • 31. Basel · Baden Bern · Brugg · Lausanne Zurich Düsseldorf · Frankfurt/M. · Freiburg i. Br. Hamburg · Munich · Stuttgart · Vienna Thanks for your attention! .. any questions?