- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- A question about Oracle on HP-UX
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2007 07:17 PM
09-19-2007 07:17 PM
A question about Oracle on HP-UX
We recently transplanted Oracle database from Windows to HP-UX.
Now we are faced with a serious problem.
Our web application cannot display the characters correctly which it read from Oracle!
I can't understand because there is no difference in "character set" of the database between windows and unix(I have confirmed it when I initialized the database on Unix)
Any advice will be appreciated
Thx in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2007 07:37 PM
09-19-2007 07:37 PM
Re: A question about Oracle on HP-UX
you have to check how is set NLS_LANG on client which is connecting to the database.
Client NLS_LANG setting is responsible for NLS conversion.
Marian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2007 07:59 PM
09-19-2007 07:59 PM
Re: A question about Oracle on HP-UX
My client is a windows server
So how can I view and change NLS_LANG
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2007 08:19 PM
09-19-2007 08:19 PM
Re: A question about Oracle on HP-UX
you can view and set in more ways.
- first is setting session variable NLS_LANG e.g. AMERICAN_AMERICA.UTF8
- second is system environment variable NLS_LANG
- third is registry key HKEY_LOCAL_MACHINE -> SOFTWARE -> ORACLE -> OraClientHome(or something like this) -> NLS_LANG
Marian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2007 08:30 PM
09-19-2007 08:30 PM
Re: A question about Oracle on HP-UX
I want to know the exact name of charset on Oracle server.
How can I know it
Is the following command correct?:
SQL>select userenv(â languageâ ) from dual;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2007 08:30 PM
09-19-2007 08:30 PM
Re: A question about Oracle on HP-UX
I got it Thx
Now I want to know the exact name of charset on Oracle server.
How can I know it
Is the following command correct?:
SQL>select userenv(â languageâ ) from dual;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2007 08:47 PM
09-19-2007 08:47 PM
Re: A question about Oracle on HP-UX
you can see all abou your NLS in this 3 views:
----------------
- NLS_SESSION_PARAMETERS shows the NLS parameters and their values for the session that is querying the view. It does not show information about the character set.
- NLS_INSTANCE_PARAMETERS shows the current NLS instance parameters that have been explicitly set and the values of the NLS instance parameters.
- NLS_DATABASE_PARAMETERS shows the values of the NLS parameters that were used when the database was created
------------------------
Maybe this manual pages could help you
for 9i (see Chapter 3):
http://download.oracle.com/docs/cd/B10501_01/server.920/a96529/toc.htm
for 10g:
http://download.oracle.com/docs/cd/B19306_01/server.102/b14225/toc.htm