Import backup between mysql database and oracle database

Import backup between mysql database and oracle database

Import the data exported from the Oracle database into the MySql database

1. Import into the MySql database using the default end symbol:

LOAD DATA LOCAL INFILE 'd:/oracle.txt' IGNORE INTO TABLE alarmLog

At this time, the default terminator of Fields is the '/t' tab character, not the "/t" string.

2. When setting the Fields terminator to import into the MySql database:

LOAD DATA LOCAL INFILE 'd:/oraclea.txt' IGNORE INTO TABLE alarmLog FIELDS TERMINATED BY '~'

The data files oracle.txt and oraclea.txt used in the above two cases are exported by the ociuldr.exe program.

Import the data exported from MySql into the Oracle database

1. Import data from the MySql database into a file by setting the Fields terminator

select * from alarmLog into outfile 'd:/mysql.txt' FIELDS TERMINATED BY '~'

Import the d:/mysql.txt data file into the Oracle database through sqlldr. Pay attention to the writing of the control file. The following is the control file corresponding to the test program.

OPTIONS(BINDSIZE=8388608,READSIZE=8388608,ERRORS=-1,ROWS=50000)
LOAD DATA
INFILE 'd:/mysql.txt' "STR X'0A'"
INTO TABLE instantdata
FIELDS TERMINATED BY '~' TRAILING NULLCOLS 
(
 FIELDID CHAR(20),
 CreateTIME date 'yyyy-mm-dd hh24:mi:ss',
 AckTIME date 'yyyy-mm-dd hh24:mi:ss',
 TYPE CHAR(40),
 QUALITY CHAR(40),
 VALUE CHAR(40),
 AVG CHAR(40),
 MAX CHAR(40),
 MIN CHAR(40),
 SUM CHAR(40)
)

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • MySQL import and export command usage for backup and restore
  • How to import and export MySQL database (backup and restore)
  • MySQL import and export backup details

<<:  Detailed usage of Vue timer

>>:  Build nginx virtual host based on domain name, port and IP

Recommend

Detailed explanation of the configuration method of Vue request interceptor

Follow the steps below 1. request.js content: htt...

How to completely uninstall Docker Toolbox

Docker Toolbox is a solution for installing Docke...

How React Hooks Work

Table of contents 1. React Hooks vs. Pure Functio...

Detailed explanation of the principle and function of Vue list rendering key

Table of contents The principle and function of l...

How to install JDK8 on Windows

1. Download: http://www.oracle.com/technetwork/ja...

jQuery implements the drop-down box for selecting the place of residence

The specific code for using jQuery to implement t...

Detailed explanation of Tomcat directory structure

Table of contents Directory Structure bin directo...

JavaScript adds prototype method implementation for built-in objects

The order in which objects call methods: If the m...

Hbase installation and configuration tutorial under Linux

Table of contents Hbase installation and configur...

Linux implements the source code of the number guessing game

A simple Linux guessing game source code Game rul...