CN101266606A - On-line data migration method based on Oracle database - Google Patents

On-line data migration method based on Oracle database Download PDF

Info

Publication number
CN101266606A
CN101266606A CNA2007100886811A CN200710088681A CN101266606A CN 101266606 A CN101266606 A CN 101266606A CN A2007100886811 A CNA2007100886811 A CN A2007100886811A CN 200710088681 A CN200710088681 A CN 200710088681A CN 101266606 A CN101266606 A CN 101266606A
Authority
CN
China
Prior art keywords
trigger
log
creating
data migration
data
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
CNA2007100886811A
Other languages
Chinese (zh)
Other versions
CN101266606B (en
Inventor
陈吉平
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Alibaba Cloud Computing Ltd
Original Assignee
Alibaba Group Holding Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Alibaba Group Holding Ltd filed Critical Alibaba Group Holding Ltd
Priority to CN2007100886811A priority Critical patent/CN101266606B/en
Publication of CN101266606A publication Critical patent/CN101266606A/en
Priority to HK08113829.2A priority patent/HK1120887A1/en
Application granted granted Critical
Publication of CN101266606B publication Critical patent/CN101266606B/en
Expired - Fee Related legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Landscapes

  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

The invention discloses a method for realizing online data migration based on Oracle database, comprising: prebuilt mv,trigger+procedure and trigger+sql*loader+ programs. The three modes comprise using operation log, total refreshment log and incremental refreshment log, and migration change to complete the data migration. By using the prebuilt mv and trigger+procedure programs according to the invention, the cross-platform, and cross-version data migration can be realized; by using the trigger+sql*loader+ program, the conversion among databases of different character sets can be realized by the text file or communication among process, in order to realize cross-character set migration.

Description

Online data migration method based on Oracle database
Technical Field
The invention relates to a database application technology, in particular to an application technology of an Oracle database.
Background
As database management systems and operating system platforms are being updated at an increasing rate, database engineers often need to perform data migration between two different databases or between two different operating system platforms. Data migration refers to migrating data from one machine to another or from one database to another, and the data (including structure definitions) can operate normally after migration.
In the prior art, a commonly used data migration method mainly includes: inspert @ using export/import (export/import) or export/import (expdp/impdp) provided by Oracle version 10g+appendFrom db _ link + logging, standby migration mode, data migration by stream and related tools, and mode of combining cross-platform data file conversion based on tablespace transmission and Oracle 10 g. However, these migrators mentioned aboveSome of the formulas have too long downtime, some of the formulas have difficulty in determining the SCN point when the complete synchronization starts, and some of the formulas have no capability of performing data migration across platforms, versions and character sets.
Disclosure of Invention
Aiming at the technical defects existing in the data migration based on the Oracle database, the invention provides the method for realizing cross-platform, cross-version, high-efficiency and quick online data migration.
According to one aspect of the present invention, a method for data migration in a rebuilt mv (materialized view) manner is provided. The method is characterized in that a materialized view is established on a table which is established in advance, when the materialized view is deleted, the originally established table is still reserved, and meanwhile, synchronous data are also reserved. The method adopts the table object as a single object of data migration, and refreshes mv by using a main key aiming at the table object. Firstly, creating mv logs on a source table, and creating a target table with the same structure on a target database; then, creating mv on a target table in a rebuilt mode, and completely refreshing; and an increment refreshing mode is adopted in the subsequent creating process, and when the database needs to be switched, only the incremental log needs to be refreshed, and mv is deleted and the target table is kept. The data migration realized by the method can adopt the following steps:
(1) classifying the table objects according to the preset capacity size, taking the table objects exceeding the preset capacity as a large table, and taking the table objects lower than the preset capacity as a small table;
(2) creating a materialized view log on a source database by taking the large table as a source table;
(3) creating a target table with the same structure as the source table on a target database, and creating a materialized view on the target table in a prebuilt mode;
(4) completely refreshing the synchronous log;
(5) performing incremental refreshing on the synchronization log;
(6) creating program code that can implement automatic incremental refresh;
(7) processing all the large tables according to the steps (2) to (6) in sequence;
(8) for taking insert-+appendFrom db _ link, marshal the script of insert;
(9) running the insert intro script to perform data migration on the small table; and
(10) and migrating and switching.
More specifically, when performing migration handover, the following series of operations are included: stopping all activities of a source database, waiting for the last batch of logs to finish incremental refreshing, running a small table script and inserting small table data, waiting for all large tables to finish refreshing, deleting mvlog in a source table and mv in a target table, keeping the target table and data, and creating an object with a dependency relationship (such as a self-growing sequence) with the target table.
According to yet another aspect of the present invention, a method for data migration using a combination of create trigger and create process (trigger + procedure) is provided. The method uses the table object as a single object for data migration and requires the table object to have a primary key. The DML (data management Language) log of the table is first recorded using a trigger and then synchronized with the DML log through a user-defined process. In view of the fact that the method mainly makes up for the defect that the large table is difficult to refresh when the data migration is carried out by adopting a prebuilt mv mode, the following steps are mainly used for refreshing the large table completely:
(1) classifying the table objects according to the preset capacity size, taking the table objects exceeding the preset capacity as a large table, and taking the table objects lower than the preset capacity as a small table;
(2) taking the large table as a source table, and creating a trigger of a data manipulation language on the source table;
(3) creating a target table with the same structure as the source table on a target database;
(4) after the trigger starts to work, loading data in the source table to the target table of the target database in batches;
(5) creating a user-defined process on the target database;
(6) fully refreshing the synchronization log generated by the trigger;
(7) performing incremental refreshing on the synchronization log; and
(8) and migrating and switching.
More specifically, when performing migration handover, the following series of operations are included: and completing the refreshing of the log, deleting the trigger, the process and the scheduled job, and completing the synchronous refreshing of the target table through a user-defined process.
According to yet another aspect of the invention, a method of creating triggers and custom programs and using sql is providedloader tool combination (trigger + sql)loader + program) to perform data migration. The method mainly utilizes text files or process communication to perform intermediate conversion and utilizes sql to perform intermediate conversionThe loader loads the data and analyzes the synchronization log according to a program customized by a database engineer. It is noted that with sqlThe loader tool can smoothly guide some data stored in a text file format into an Oracle database, and is a very convenient and common means for data migration among different databases. The method can perform data migration through the following steps:
(1) classifying the table objects according to the preset capacity size, taking the table objects exceeding the preset capacity as a large table, and taking the table objects lower than the preset capacity as a small table;
(2) taking the large table as a source table, and creating a trigger of a data manipulation language on the source table;
(3) creating a target table with the same structure as the source table on a target database;
(4) after the trigger starts to work, loading data in the source table to the target table of the target database in batches;
(5) the middle layer is respectively connected with databases of different character sets by two processes;
(6) fully refreshing the synchronization log generated by the trigger;
(7) performing incremental refreshing on the synchronization log; and
(8) and migrating and switching.
More specifically, the small table loading in step (1) includes two ways: generating a text file by using select or program, through Sqlloading a loader; directly generating a script of insert intos to a text file and then executing.
More specifically, two schemes can be adopted for synchronizing the logs in the step (6), one scheme is that a DML statement is directly generated on a source according to the logs and is sent to a target for execution in a text mode; the method is characterized in that two processes are utilized in the middle layer and are respectively connected with databases of different character sets, wherein one process is used for analyzing logs, and the other process is used for synchronizing logs.
More specifically, the migration switching in step (8) includes synchronizing the last log and stopping the synchronization process.
By adopting a prebuild mv mode, a trigger + Procedure mode and a trigger + sql mode based on an Oracle database in the inventionThe migration method carried out in the loader + program mode can realize data migration across platforms and database versions and can complete data recombination optimization, wherein trigger + SqlThe loader + program mode can also realize data migration across character setsAnd moreover, the efficiency of data migration is greatly improved, and the shutdown switching time is reduced.
Drawings
The various aspects of the present invention will become more apparent to the reader after reading the detailed description of the invention with reference to the attached drawings. Wherein,
FIG. 1 illustrates several methods of data migration commonly used in the prior art;
FIG. 2 illustrates three ways in which online data migration may be implemented in the present invention;
FIG. 3 shows an online data migration method based on a rebuilt mv mode in the present invention;
FIG. 4 shows an online data migration method based on trigger + procedure in the present invention; while
FIG. 5 shows the trigger + sql-based approach of the present inventionAn online data migration method in a loader + program mode.
Detailed Description
Embodiments of the present invention will be described in further detail below with reference to the accompanying drawings.
FIG. 1 illustrates several data migration methods commonly used in the prior art, wherein the online data migration can be performed in a manner including standby, stream, and related tools; ways in which data migration can be accomplished requiring a long downtime include expdp/imp or expdp/impdp under Oracle 10g version, taking the instruction insert @+appendFrom db _ link + nologging dblink mode and surface space transmission. Referring to fig. 1, the above-mentioned several common data migration methods can be performed according to the following procedures, depending on whether online migration is supported:
(1) data migration preparation 100;
(2) a determination 102 of whether to migrate online;
(3) if online migration is not performed, shutdown maintenance 104 is performed;
(4) common migration methods such as export/import, dblink, surface space transport, etc. 106;
(5) if online migration is carried out, adopting 108 of standby, stream and related tools and the like;
(6) a migration switch 110; and
(7) after either 106 or 110 has been performed, the data migration 112 is complete.
FIG. 2 shows three ways of implementing online data migration in the present invention, namely, a prebuilt mv way, a trigger + procedure way, and a trigger + sqlloader + program mode. The three modes are all used for recording the DML operation log of the source table, and the synchronous log is completely refreshed and incrementally refreshed to realize data migration of table objects with different capacities in the source database. More specifically, the prebuilt mv approach and the trigger + procedure approach can implement cross-platform and cross-version data migration, while the trigger + sqlThe loader + program mode can not only realize cross-platform and cross-version data migration, but also realize cross-character set data migration by utilizing text files or inter-process communication. Referring to fig. 2, several methods of implementing online data migration according to the present invention can be collectively represented by the following flows:
(1) data migration preparation 200;
(2) online data migration 202;
(3) cross-platform, cross-version data migration 204 based on the Oracle database;
(4) cross-platform, cross-version, cross-character set data migration 206 based on an Oracle database;
(5) if the data migration of 204 is performed, a prebuilt mv mode 208 or a trigger + procedure mode 210 may be employed;
(6) if 206 data migration is performed, trigger + sql may be usedloader + program mode 212;
(7) when the method of executing 208, 210 or 212 implements the data migration, log 214 is recorded;
(8) fully flushing the synchronization log 216;
(9) the synchronization log 218 is incrementally refreshed;
(10) migration switching 220; and
(11) the data migration is completed 222.
Fig. 3, fig. 4, and fig. 5 are specific implementation flows of the above three data migration manners, which are sequentially described below.
FIG. 3 shows an online data migration method based on a rebuilt mv mode in the present invention. The method takes the table object as a single object of data migration, and completes the data migration through the following specific steps:
(1) data migration preparation 300;
(2) treating the table object as a single object for migration 302;
(3) a decision 304 as to whether the table capacity is greater than 100M, wherein the table objects are sorted by capacity size, and the table objects with a capacity of 100M or more are called large tables, and the table objects with a capacity of 100M or less are called small tables;
(4) migrating data in an insert-to-intro manner 306;
(5) a script 308 for sorting insert intro;
(6) running insert intro script to migrate the data in the small table 310;
(7) creating an mv log on a source database to record the DML operation 312 of the source table, wherein an instruction for creating the mv log is 1:
create materialized view log on table_name;
(8) the fully-refreshed synchronization log 314 specifically executes the following instructions:
exec dbms_mview.refresh(‘table_name’,method=>’Complete’);
(9) the incremental refresh synchronization log 316 specifically executes the following instructions:
exec dbms_mview.refresh(‘table_name’)
declare jobid number;
begin
sys.dbms_job.submit(job=>jobid,
what=>’dbms_mview.refresh(“table_name”);’,
next_date=>sysdate,
interval=>’sysdate+1/1440’);
commit;
end;
and
(10) migration switch 318 and complete data migration 320.
Wherein step migration switch 318, it includes stopping all activities of the source database, waiting for the last batch of logs to finish incremental refresh, running small table script and insert small table data, waiting for all large tables to finish refresh, deleting mvlog in the source table and mv in the target table and retaining the target table and data, creating objects having dependency relationship with the target table (such as self-growing sequence).
FIG. 4 shows an online data migration method based on trigger + procedure in the present invention. The method adopts the trigger to record the DML log of the source table, adopts the user-defined process to synchronize the log to complete data migration, and when the trigger is combined with the user-defined process, the user can write own business requirements in the process according to own needs, and can also refresh the tables in a plurality of databases into one target table, so that the data migration becomes more flexible. The method can be realized by the following specific steps:
(1) data migration preparation 400;
(2) treating the table object as a single object for migration 402;
(3) a decision 404 as to whether the table size is greater than 100M, wherein the table objects are sorted by size, and the table objects with a size of 100M or more are called large tables, and the table objects with a size of 100M or less are called small tables;
(4) migrating data 406 in an insert intro manner;
(5) a script 408 for sorting insert intro;
(6) running insert intro script to migrate the data in the small table 410;
(7) creating a log table 412 on the source database, more specifically, the creation of the log table can be expressed as:
create table REP_TABLE_LOGS
(
REP_KEY NUMBER not null,
DML_TYPE VARCHAR2(1)not null,
DML_TIME DATE default sysdate not null,
REP_FLAG NUMBER default 0 not null
);
(8) a trigger 414 to create a DML on the source table;
(9) determining if the trigger is to begin operation 416;
(10) loading data of the source table into the target database in batches 418;
(11) creating a procedure on the target database, and completely refreshing the synchronization log 420 generated by the trigger;
(12) incrementally refresh the synchronization log 422; and
(13) migration switch 424 and complete data migration 426.
FIG. 5 shows the trigger + sql-based approach of the present inventionAn online data migration method in a loader + program mode. The method utilizes the communication between text files or processes to perform intermediate conversion so as to realize the completion of the migration of data of different character sets. The migration method can also be implemented by adopting the following steps:
(1) data migration preparation 500;
(2) the table object is treated as a single object for migration 502;
(3) judging 504 whether the table capacity is larger than 100M, classifying the table objects according to the preset capacity size, regarding the table objects exceeding the preset capacity as a large table, and regarding the table objects lower than the preset capacity as a small table;
(4) generating a text file 506 by using select or program;
(5) by sqlloader loads data 508;
(6) creating a custom program, and starting two processes to be respectively connected with databases 510 of different character sets;
(7) creating a log table 512 on the source database;
(8) a trigger 514 to create a DML on the source table;
(9) determining if the trigger starts to operate 516;
(10) load the data of the source table into the target database in bulk 518;
(11) the middle layer utilizes two processes to respectively connect databases of different character sets, analyze and synchronize the log 520;
(12) the synchronization log 522 is incrementally refreshed; and
(13) migration switch 524 and complete data migration 526.
More specifically, in the step (3), two schemes are adopted for migrating the data in the small table, namely, a text file is generated by using select or a program, and the text file is passed through sqlloading data by a loader tool; one is to directly generate scripts of insertinto to a text file and execute.
More specifically, in step (11), synchronizing the log may also be implemented by another scheme, that is, directly generating a DML statement on the source database according to the log, and sending the DML statement to the target database for execution in a text file manner.
Hereinbefore, specific embodiments of the present invention are described with reference to the drawings. However, those skilled in the art will appreciate that various modifications and substitutions can be made to the specific embodiments of the present invention without departing from the spirit and scope of the invention. Such modifications and substitutions are intended to be included within the scope of the present invention as defined by the appended claims.

Claims (17)

1. An online data migration method based on an Oracle database is characterized by comprising the following steps:
(1) classifying the table objects according to the preset capacity size, taking the table objects exceeding the preset capacity as a large table, and taking the table objects lower than the preset capacity as a small table;
(2) creating a materialized view log on a source database by taking the large table as a source table;
(3) creating a target table with the same structure as the source table on a target database, and creating a materialized view on the target table in a prebuilt mode;
(4) completely refreshing the synchronous log;
(5) performing incremental refreshing on the synchronization log;
(6) creating program code that can implement automatic incremental refresh;
(7) processing all the large tables according to the steps (2) to (6) in sequence;
(8) sorting scripts of insertintro for small tables processed by insert/ap pen/intro.. from db _ link;
(9) running the insert intro script to perform data migration on the small table; and
(10) and migrating and switching.
2. The method of claim 1, wherein, when performing step (3), the structure of the source table remains unchanged after the log creation is complete and before the copying of the migration data is complete.
3. The method of claim 1, wherein the full flush is performed only when the log is synchronized for the first time.
4. An online data migration method based on an Oracle database is characterized by comprising the following steps:
(1) classifying the table objects according to the preset capacity size, taking the table objects exceeding the preset capacity as a large table, and taking the table objects lower than the preset capacity as a small table;
(2) taking the large table as a source table, and creating a trigger of a data manipulation language on the source table;
(3) creating a target table with the same structure as the source table on a target database;
(4) after the trigger starts to work, loading data in the source table to the target table of the target database in batches;
(5) creating a user-defined process on the target database;
(6) fully refreshing the synchronization log generated by the trigger;
(7) performing incremental refreshing on the synchronization log; and
(8) and migrating and switching.
5. The method of claim 4, wherein in performing step (1), data migration is performed using insert/+ apend/inte.
6. The method of claim 4, wherein the REP _ KEY of the log is used to deposit a primary KEY of the source table, the field type depending on the field type of the source table.
7. The method of claim 4, wherein, when performing step (3), the structure of the source table remains unchanged after the trigger creation is complete and before the copying of the migrated data is complete.
8. The method of claim 4, wherein the trigger can log an operation log of a data manipulation language of the source table.
9. The method of claim 4, wherein creating the user-customized process can synchronize an oplog of the data manipulation language generated by the trigger.
10. An online data migration method based on an Oracle database is characterized by comprising the following steps:
(1) classifying the table objects according to the preset capacity size, taking the table objects exceeding the preset capacity as a large table, and taking the table objects lower than the preset capacity as a small table;
(2) taking the large table as a source table, and creating a trigger of a data manipulation language on the source table;
(3) creating a target table with the same structure as the source table on a target database;
(4) after the trigger starts to work, loading data in the source table to the target table of the target database in batches;
(5) the middle layer is respectively connected with databases of different character sets by two processes;
(6) fully refreshing the synchronization log generated by the trigger;
(7) performing incremental refreshing on the synchronization log; and
(8) and migrating and switching.
11. The method of claim 10, wherein in performing step (1), for table objects less than the predetermined capacity, a text file is generated using a select instruction or program code, loaded by a Sql loader.
12. The method of claim 10, wherein in performing step (1), scripts for insert intro are generated directly into a text file and executed for table objects smaller than the predetermined capacity.
13. The method of claim 11 or 12, wherein two processes are created using a user-defined program and connected to databases of different character sets for data migration across character sets.
14. The method of claim 10, wherein the trigger can record a data manipulation language oplog of the source table.
15. The method of claim 10, wherein the two processes in step (5) comprise a first process and a second process, the first process being for analyzing logs and the second process being for synchronizing logs.
16. An online data migration system employing the migration method of any one of claims 1, 4, 10.
17. A method of synchronising replication of data between databases using a method as claimed in any of claims 1, 4 and 10.
CN2007100886811A 2007-03-15 2007-03-15 On-line data migration method based on Oracle database Expired - Fee Related CN101266606B (en)

Priority Applications (2)

Application Number Priority Date Filing Date Title
CN2007100886811A CN101266606B (en) 2007-03-15 2007-03-15 On-line data migration method based on Oracle database
HK08113829.2A HK1120887A1 (en) 2007-03-15 2008-12-19 Method for on-line data migration based on oracle database

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN2007100886811A CN101266606B (en) 2007-03-15 2007-03-15 On-line data migration method based on Oracle database

Publications (2)

Publication Number Publication Date
CN101266606A true CN101266606A (en) 2008-09-17
CN101266606B CN101266606B (en) 2012-06-20

Family

ID=39989029

Family Applications (1)

Application Number Title Priority Date Filing Date
CN2007100886811A Expired - Fee Related CN101266606B (en) 2007-03-15 2007-03-15 On-line data migration method based on Oracle database

Country Status (2)

Country Link
CN (1) CN101266606B (en)
HK (1) HK1120887A1 (en)

Cited By (34)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101674495A (en) * 2009-10-20 2010-03-17 中兴通讯股份有限公司 Method and device for preprocessing data disaster tolerance
CN102043801A (en) * 2009-10-16 2011-05-04 无锡华润上华半导体有限公司 Inter-database data interaction method and system, database of transmitter and database of receiver
CN101382949B (en) * 2008-10-28 2011-09-07 阿里巴巴集团控股有限公司 Management method for database table and apparatus
CN101706803B (en) * 2009-11-27 2012-07-04 天津工业大学 Method for migrating production data of weaving workshop
WO2012136040A1 (en) * 2011-04-08 2012-10-11 中兴通讯股份有限公司 Service database-based marketing analysis method and system database
EP2602727A1 (en) 2011-12-06 2013-06-12 Krea Icerik Hizmetleri Ve Produksiyon Anonim Sirketi Method and system of rapid data transfer from source database to destination database
CN103455557A (en) * 2013-08-08 2013-12-18 上海新炬网络技术有限公司 Log based structured data synchronization method
CN103514180A (en) * 2012-06-21 2014-01-15 中兴通讯股份有限公司 Data providing method and device
CN103559272A (en) * 2013-11-05 2014-02-05 北京国双科技有限公司 Method and device for importing data into dimension table
CN103914458A (en) * 2012-12-29 2014-07-09 中国移动通信集团河北有限公司 Mass data migration method and device
CN104462344A (en) * 2014-12-04 2015-03-25 北京国双科技有限公司 Processing method and device for constructing ETL system on target server
CN104536994A (en) * 2014-12-11 2015-04-22 北京京东尚科信息技术有限公司 Universal data migration method and device
CN104573122A (en) * 2015-02-09 2015-04-29 浪潮电子信息产业股份有限公司 Oracle database migration tool for migrating from AIX platform to K-UX platform
CN104573056A (en) * 2015-01-22 2015-04-29 浪潮电子信息产业股份有限公司 Database large data volume online migration method based on oracle
CN105393250A (en) * 2013-07-09 2016-03-09 甲骨文国际公司 Dynamic migration script management
GB2533086A (en) * 2014-12-08 2016-06-15 Ibm Controlling a multi-database system
CN105868204A (en) * 2015-01-21 2016-08-17 中国移动(深圳)有限公司 Method and apparatus for converting script language SQL of Oracle
CN106095969A (en) * 2016-06-17 2016-11-09 浪潮(北京)电子信息产业有限公司 A kind of method of data syn-chronization, device, system and data base
CN106776688A (en) * 2016-11-10 2017-05-31 国云科技股份有限公司 A kind of cross-platform physical migration network system realization of oracle database
CN107247727A (en) * 2017-04-28 2017-10-13 北京五八信息技术有限公司 Data migration method and equipment
WO2017193739A1 (en) * 2016-05-10 2017-11-16 中兴通讯股份有限公司 Data sharing method and apparatus
CN107992512A (en) * 2017-10-20 2018-05-04 中国建设银行股份有限公司上海市分行 A kind of method of Data Migration, system and computer-readable recording medium
CN108897773A (en) * 2018-05-31 2018-11-27 湖南格凡安信科技有限公司 A kind of transparent online database anonymization data parallel moving method
CN109165260A (en) * 2018-09-25 2019-01-08 安徽信息工程学院 Method of data transfer based on ORACLE data basd link
CN109189761A (en) * 2018-08-31 2019-01-11 中国农业银行股份有限公司 A kind of data migration method and device
CN109284281A (en) * 2018-09-10 2019-01-29 北京百度网讯科技有限公司 Method and apparatus for migrating data
CN110647421A (en) * 2018-06-27 2020-01-03 阿里巴巴集团控股有限公司 Database processing method, device and system and electronic equipment
US10540335B2 (en) 2013-07-09 2020-01-21 Oracle International Corporation Solution to generate a scriptset for an automated database migration
US10691654B2 (en) 2013-07-09 2020-06-23 Oracle International Corporation Automated database migration architecture
US10776244B2 (en) 2013-07-09 2020-09-15 Oracle International Corporation Consolidation planning services for systems migration
US11036696B2 (en) 2016-06-07 2021-06-15 Oracle International Corporation Resource allocation for database provisioning
CN113297182A (en) * 2021-06-16 2021-08-24 中国农业银行股份有限公司 Data migration method, device, storage medium and program product
US11157664B2 (en) 2013-07-09 2021-10-26 Oracle International Corporation Database modeling and analysis
US11256671B2 (en) 2019-09-13 2022-02-22 Oracle International Corporation Integrated transition control center

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1477546A (en) * 2002-08-19 2004-02-25 万达信息股份有限公司 Method for duplicating data of identical data table between two data bases

Cited By (52)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101382949B (en) * 2008-10-28 2011-09-07 阿里巴巴集团控股有限公司 Management method for database table and apparatus
CN102043801A (en) * 2009-10-16 2011-05-04 无锡华润上华半导体有限公司 Inter-database data interaction method and system, database of transmitter and database of receiver
CN101674495A (en) * 2009-10-20 2010-03-17 中兴通讯股份有限公司 Method and device for preprocessing data disaster tolerance
WO2010145414A1 (en) * 2009-10-20 2010-12-23 中兴通讯股份有限公司 Method, device and service control point (scp) for data disaster tolerance preprocessing
EP2493083A4 (en) * 2009-10-20 2015-07-29 Zte Corp Method, device and service control point (scp) for data disaster tolerance preprocessing
CN101674495B (en) * 2009-10-20 2015-06-03 中兴通讯股份有限公司 Method and device for preprocessing data disaster tolerance
US8676754B2 (en) 2009-10-20 2014-03-18 Zte Corporation Method and apparatus for data disaster tolerance preprocessing, and service control point
CN101706803B (en) * 2009-11-27 2012-07-04 天津工业大学 Method for migrating production data of weaving workshop
WO2012136040A1 (en) * 2011-04-08 2012-10-11 中兴通讯股份有限公司 Service database-based marketing analysis method and system database
EP2602727A1 (en) 2011-12-06 2013-06-12 Krea Icerik Hizmetleri Ve Produksiyon Anonim Sirketi Method and system of rapid data transfer from source database to destination database
CN103514180A (en) * 2012-06-21 2014-01-15 中兴通讯股份有限公司 Data providing method and device
CN103914458A (en) * 2012-12-29 2014-07-09 中国移动通信集团河北有限公司 Mass data migration method and device
CN105393250A (en) * 2013-07-09 2016-03-09 甲骨文国际公司 Dynamic migration script management
US10776244B2 (en) 2013-07-09 2020-09-15 Oracle International Corporation Consolidation planning services for systems migration
US10248671B2 (en) 2013-07-09 2019-04-02 Oracle International Corporation Dynamic migration script management
US11157664B2 (en) 2013-07-09 2021-10-26 Oracle International Corporation Database modeling and analysis
CN105393250B (en) * 2013-07-09 2019-07-26 甲骨文国际公司 The management of dynamic migration script
US10540335B2 (en) 2013-07-09 2020-01-21 Oracle International Corporation Solution to generate a scriptset for an automated database migration
US10691654B2 (en) 2013-07-09 2020-06-23 Oracle International Corporation Automated database migration architecture
CN103455557A (en) * 2013-08-08 2013-12-18 上海新炬网络技术有限公司 Log based structured data synchronization method
CN103455557B (en) * 2013-08-08 2016-06-29 上海新炬网络技术有限公司 A kind of structural data synchronous method based on daily record
CN103559272A (en) * 2013-11-05 2014-02-05 北京国双科技有限公司 Method and device for importing data into dimension table
CN104462344B (en) * 2014-12-04 2018-04-03 北京国双科技有限公司 In the processing method and processing device of destination server structure ETL system
CN104462344A (en) * 2014-12-04 2015-03-25 北京国双科技有限公司 Processing method and device for constructing ETL system on target server
GB2533086A (en) * 2014-12-08 2016-06-15 Ibm Controlling a multi-database system
US10552451B2 (en) 2014-12-08 2020-02-04 International Business Machines Corporation Controlling a multi-database system
US11176171B2 (en) 2014-12-08 2021-11-16 International Business Machines Corporation Controlling a multi-database system
CN104536994A (en) * 2014-12-11 2015-04-22 北京京东尚科信息技术有限公司 Universal data migration method and device
CN105868204B (en) * 2015-01-21 2019-06-21 中移信息技术有限公司 A kind of method and device for converting Oracle scripting language SQL
CN105868204A (en) * 2015-01-21 2016-08-17 中国移动(深圳)有限公司 Method and apparatus for converting script language SQL of Oracle
CN104573056A (en) * 2015-01-22 2015-04-29 浪潮电子信息产业股份有限公司 Database large data volume online migration method based on oracle
CN104573122A (en) * 2015-02-09 2015-04-29 浪潮电子信息产业股份有限公司 Oracle database migration tool for migrating from AIX platform to K-UX platform
CN104573122B (en) * 2015-02-09 2017-10-13 浪潮电子信息产业股份有限公司 Oracle database migration tool for migrating from AIX platform to K-UX platform
WO2017193739A1 (en) * 2016-05-10 2017-11-16 中兴通讯股份有限公司 Data sharing method and apparatus
CN107357791A (en) * 2016-05-10 2017-11-17 中兴通讯股份有限公司 A kind of data sharing method and device
CN107357791B (en) * 2016-05-10 2021-10-15 中兴通讯股份有限公司 Data sharing method and device
US11036696B2 (en) 2016-06-07 2021-06-15 Oracle International Corporation Resource allocation for database provisioning
CN106095969A (en) * 2016-06-17 2016-11-09 浪潮(北京)电子信息产业有限公司 A kind of method of data syn-chronization, device, system and data base
CN106776688A (en) * 2016-11-10 2017-05-31 国云科技股份有限公司 A kind of cross-platform physical migration network system realization of oracle database
CN107247727A (en) * 2017-04-28 2017-10-13 北京五八信息技术有限公司 Data migration method and equipment
CN107992512A (en) * 2017-10-20 2018-05-04 中国建设银行股份有限公司上海市分行 A kind of method of Data Migration, system and computer-readable recording medium
CN108897773B (en) * 2018-05-31 2019-12-27 湖南格凡安信科技有限公司 Transparent online database anonymization data parallel migration method
CN108897773A (en) * 2018-05-31 2018-11-27 湖南格凡安信科技有限公司 A kind of transparent online database anonymization data parallel moving method
CN110647421A (en) * 2018-06-27 2020-01-03 阿里巴巴集团控股有限公司 Database processing method, device and system and electronic equipment
CN110647421B (en) * 2018-06-27 2022-11-25 阿里巴巴集团控股有限公司 Database processing method, device and system and electronic equipment
CN109189761A (en) * 2018-08-31 2019-01-11 中国农业银行股份有限公司 A kind of data migration method and device
CN109284281A (en) * 2018-09-10 2019-01-29 北京百度网讯科技有限公司 Method and apparatus for migrating data
CN109165260A (en) * 2018-09-25 2019-01-08 安徽信息工程学院 Method of data transfer based on ORACLE data basd link
US11256671B2 (en) 2019-09-13 2022-02-22 Oracle International Corporation Integrated transition control center
US11822526B2 (en) 2019-09-13 2023-11-21 Oracle International Corporation Integrated transition control center
CN113297182A (en) * 2021-06-16 2021-08-24 中国农业银行股份有限公司 Data migration method, device, storage medium and program product
CN113297182B (en) * 2021-06-16 2024-01-30 中国农业银行股份有限公司 Data migration method, device, storage medium and program product

Also Published As

Publication number Publication date
HK1120887A1 (en) 2009-04-09
CN101266606B (en) 2012-06-20

Similar Documents

Publication Publication Date Title
CN101266606B (en) On-line data migration method based on Oracle database
KR101556435B1 (en) Database backing-up and recovering method and device
US9218377B2 (en) Failure recovery and error correction techniques for data loading in information warehouses
US8996458B2 (en) High volume, high speed adaptive data replication
US8719786B2 (en) Method for performing conditionalized N-way merging of source code
CN110209728B (en) Distributed heterogeneous database synchronization method, electronic equipment and storage medium
US20070255765A1 (en) Systems and methods for file maintenance
CN107545015B (en) Processing method and processing device for query fault
CN109614315B (en) Automatic generation method and system of data synchronization test case
CN103914458A (en) Mass data migration method and device
CN105701190A (en) Data synchronizing method and device
CN109063005B (en) Data migration method and system, storage medium and electronic device
CN110618988B (en) Data processing method and device based on big data platform
CN106446019A (en) Software function processing method and device
WO2020244445A1 (en) Coverage information obtaining method and device
CN101174237A (en) Automatic test method, system and test device
US9348882B2 (en) Method, system, and computer readable medium for long term archiving of data in a MES system
CN115292307A (en) Data synchronization system, method and corresponding computer equipment and storage medium
CN112732828A (en) Cross-platform data sharing method based on data warehouse tool
JP2019211805A (en) Database migration support system and program
KR102518772B1 (en) Data loading profiling apparatus and method for automatic processing of collected data
CN107193736A (en) Method of testing, device, electronic equipment and storage medium
CN110597823A (en) Method for supporting online DDL operation of MySQL database
CN106126487A (en) A kind of journal file method for splitting and device
US7275234B2 (en) System and method of automatically generating kerf design data

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
REG Reference to a national code

Ref country code: HK

Ref legal event code: DE

Ref document number: 1120887

Country of ref document: HK

C14 Grant of patent or utility model
GR01 Patent grant
REG Reference to a national code

Ref country code: HK

Ref legal event code: GR

Ref document number: 1120887

Country of ref document: HK

TR01 Transfer of patent right
TR01 Transfer of patent right

Effective date of registration: 20200424

Address after: Building 8, No. 16, Zhuantang science and technology economic block, Xihu District, Hangzhou City, Zhejiang Province

Patentee after: ALIYUN COMPUTING Co.,Ltd.

Address before: English genus

Patentee before: Alibaba Group Holding Ltd.

CF01 Termination of patent right due to non-payment of annual fee
CF01 Termination of patent right due to non-payment of annual fee

Granted publication date: 20120620