Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3
Table of Contents

Version

5.3.3 or below

Explanation

Unable to connect to the client.

Cause

This error occurs if the character sets for Altibase and the client differ.

Action

Set the NLS value of the client to the same value as the Altibase server. You can also set the character set by using the environmental variable called ALTIBASE_NLS_USE from iSQL.

Reference

1. Check the Character Set 
Code Block
languagesql
iSQL> SELECT nls_use, nls_characterset FROM v$nls_parameters;
NLS_USE                                   NLS_CHARACTERSET
---------------------------------------------------------------------------------------
US7ASCII                                  MS949

(NLS_USE : Client Character Set,  NLS_CHARACTERSET : DB Character Set)

2. How to set the environmental variables

    Execute the following command from the client shell.

Code Block
$export ALTIBASE_NLS_USE=MS949