|
To efficiently migrate DB2 packed decimal data type to an Oracle Database,
follow these steps:
- unload the DB2 data in a flat file
- transfer the file with FTP without changing the format from EBCDIC to
ASCII
- load the data with SQL*Loader and use the right characterset,
e.g.: LOAD DATA CHARACTERSET WE8EBCDIC500
|