exp / imp comment garbled or Oracle EXP-00091 solution

After using imp import today, found in garbage comments, source, destination database version is 11.2.0.1 

View source character set:

SQL> select userenv('language') from dual;
USERENV('LANGUAGE')
----------------------------------------------------
AMERICAN_AMERICA.AL32UTF8
 

Goal-side character set:
 

The SQL> SELECT Userenv ( 'Language') from Dual;
USERENV ( 'the LANGUAGE')
-------------------------------- --------------------
AMERICAN_AMERICA.AL32UTF8
examination revealed the source NLS_LANG is not set, set the source, target end NLS_LANG, to solve the garbage problem.

 AMERICAN_AMERICA.AL32UTF8 the NLS_LANG = Export
----------------
Disclaimer: This article is the original article CSDN bloggers "huangliang0703", and follow CC 4.0 BY-SA copyright agreements, please attach a reprint the original source link and this statement.
Original link: https: //blog.csdn.net/huangliang0703/article/details/82851807

Guess you like

Origin www.cnblogs.com/guohu/p/11456597.html