InterviewSolution
| 1. |
When Using Oracle Export/import What Character Set Concerns Might Come Up? How Do You Handle Them? |
|
Answer» Be sure to SET NLS_LANG for EXAMPLE to "AMERCIAN_AMERICA.WE8ISO8859P1". If your SOURCE DATABASE is US7ASCII, beware of 8-bit characters. Also be wary of multi-byte characters sets as those may require extra attention. Also watch export/import for messages about any "character set conversions" which may occur. Be sure to set NLS_LANG for example to "AMERCIAN_AMERICA.WE8ISO8859P1". If your source database is US7ASCII, beware of 8-bit characters. Also be wary of multi-byte characters sets as those may require extra attention. Also watch export/import for messages about any "character set conversions" which may occur. |
|