- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- pro-c on IA64
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
04-19-2005 12:32 AM
04-19-2005 12:32 AM
pro-c on IA64
I think the problem is due to a different value between NLS_LANG and DB charset. how to set this varaible on my clent?
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2005 12:42 AM
04-19-2005 12:42 AM
Re: pro-c on IA64
export NLS_LANG=blablabla
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2005 01:00 AM
04-19-2005 01:00 AM
Re: pro-c on IA64
have I to set a particolar NLS_LANG value for itanium?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2005 01:03 AM
04-19-2005 01:03 AM
Re: pro-c on IA64
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2005 01:32 AM
04-19-2005 01:32 AM
Re: pro-c on IA64
please have a look at:
http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=133469.1
Regards,
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2005 01:51 AM
04-19-2005 01:51 AM
Re: pro-c on IA64
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2005 01:56 AM
04-19-2005 01:56 AM
Re: pro-c on IA64
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2005 03:25 AM
04-19-2005 03:25 AM
Re: pro-c on IA64
Infact I tied to trasport c and pro-c application of my company from hp-ux 9000/800 platform to IA64 platform.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2005 03:31 AM
04-19-2005 03:31 AM
Re: pro-c on IA64
please let us know if your test and workaround is OK.
For non-metalink users:
Bug 3473428:
Product (Component) JDBC (Oci)
Range of versions believed to be affected Versions < 10.1.0.2
JDBC OCI defineColumnType () behaves incorrectly when NLS_LANG
differs from the DB charset (and is not US7ASCII).
eg:
create table tkpjif01 (x char(40));
insert into tkpjif01 values ('a234567890b234567890c234567890')
stmt.defineColumnType (1, Types.CHAR, 2);
select x from tkpjif01
print out the result set
The output is supposed to be "a2" but shows as "a23456"
Workaround:
Use NLS_LANG=.US7ASCII
OR
Use NLS_LANG the same as the database character set
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2005 03:52 AM
04-19-2005 03:52 AM
Re: pro-c on IA64
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2005 07:31 PM
04-20-2005 07:31 PM
Re: pro-c on IA64
Thank you for collaboration
Bye