Set the NLS_LANG=your charcter set in the OS environment.

example: If you want to export the data in the UTF8 format then you set:
Code:
        setenv NLS_LANG AMERICAN_AMERICA.UTF8
        
        or
      
        export NLS_LANG=AMERICAN_AMERICA.UTF8
Then do the same for the import and things should work.

Sam