I’m trying to use Session Browser feature on Toad for Oracle.
When I connect to Oracle Database on Toad for Oracle then execute Session Browser on Toad for Oracle, Toad for Oracle appears an alert with “ORA-29275: partial multibyte character”.
So I made change NLS_LANG value to AL32UTF8 on My PC registry editor then tried to execute it on Toad for Oracle.
But the issue is still happening on Toad for Oracle.
Can you provide me some advice for resolving the issue?
It seems to happen when characters put into the MODULE or ACTION column are incompatible with the database character set via DBMS_APPLICATION. It can also happen with the OSUSER column.
Toad 12.12 works around the problem, so if you update your Toad the problem should go away.
@Gulnara, are you just running "select * from v$session" in the editor, or are you opening the Session Browser and getting an error there?
I believe the problem is fixed in the Session Browser by using TO_SINGLE_BYTE() around the ACTION column
If you are just running "select * from V$Session" in the editor....you'll need to query with TO_SINGLE_BYTE. This is not a Toad problem, it's an Oracle problem.
@JohnDorlon, I also tried to open Session Browser - same result. I still face ORA-29275: partial multibyte character.
May be it is Oracle problem, but I can execute "select * from v$session" in Oracle Sql Developer without problem.
And I want to use Toad, not Oracle Sql Developer.