Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Delivery status notification.

843834Oct 7 2008 — edited Jul 25 2009
Hi,
How do I actually get coding this part with JavaMail? I've used the JavaMail APIs to send a mail, but how do I get a delivery status notification back? I've come to the point of adding the dsn.jar file to my classpath. Any pointers on this would be highly appreciated.

with warm regards,
Ash.

Comments

unknown-698157
The primary reason is
Not reading documentation
As a result
either the character set of the database is incorrect
or
NLS_LANG was incorrect during export or import.

------
Sybrand Bakker
Senior Oracle DBA
Lubiez Jean-Valentin
Hello,
after migration hardcoded arabic characters not displaying properly and privilages are not migrating properly what could be the reason ?
Did you get any message which warms you that there's a possible characterset conversion ?

The easiest way is to migrate your datas into a target database which has the same characterset than the source one. Else, you may care about characterset migration. For instance, you can migrate from US7ASCII to WE8MSWIN1252, ... some charactersets are compatible some other not.

More over, as previously posted, if the NLS_LANG is not well set, it can prevent a correct conversion.

You may have more details on the following link:

http://download.oracle.com/docs/cd/B28359_01/server.111/b28298/ch11charsetmig.htm#CEGCGEAF

About the Privilege, it would be nice that you post the error message. May be, you need to create first a User on the database so as to be able to Grant him the Object Privileges during the Import.


Hope this help.
Best regards,
Jean-Valentin
sb92075
after migration hardcoded arabic characters not displaying properly
One of two reasons are why this occurs
1) data in the new DB is not correct
2) data in the new DB is correct & a data presentation problem exists

You can determine which is the case by issuing simple SELECT as below.

SELECT ASCII_STR(<arabic_column>) from ARABIC_TABLE;

Examine result set to determine is correct data is actually in the DB.
1 - 3
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Aug 22 2009
Added on Oct 7 2008
4 comments
232 views