Editor Error

Servi

Member
hi every one , i am usin version 12 but when i want to make a query 2. criter is ":qbe_var6" .
how can i solve this problem ?

Zjgvv3.jpg

 
This indicates that the database is a Unicode UTF8 database, whereas your client is not an UTF8 client. To resolve this difference the SQL Window uses bind variables for the QBE values, so that the data can be passed in another format (UTF8) than the client character set.

To resolve this you can either:
  1. Set the character set of the NLS_LANG variable of your PC to UTF8. This can either be done as an environment variable, a registry entry, or in the PL/SQL Developer Params.ini file.
  2. Recreate the database with a standard non-UTF8 character set.
 
Back
Top