Link to home
Start Free TrialLog in
Avatar of DarrenJackson
DarrenJacksonFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Refresh from Metallink job error

Guys
I use oracle oem 10g I would like to use the metallink link to get the patches from oracle but everytime I run this I get the following error but I am nit sure how to move on

Updating OEM repository with latest release table data from Oracle MetaLink.
 
 - Exception trying to access the repository. java.sql.SQLException: ORA-12899: value too large for column "SYSMAN"."MGMT_ARU_PRODUCTS"."PRODUCT_NAME" (actual: 54, maximum: 50)

 Any one got any Ideas
Cheers

Darren
 

 
Avatar of David VanZandt
David VanZandt
Flag of United States of America image

One possibility, to get the discussion going, is that you're using a non-standard language set.  Here's something from the archives:

This error is most probably related to your NLS_CHARACTERSET,
US7ASCI is single-byte, AL32UTF8 is multi-byte (up to 4 byte per character).

You can try with NLS_LENGTH_SEMANTICS=CHAR (default is BYTE),
this parameter applies only to newly created tables, so if you are trying to import data into existing tables, then recreate them first with parameter above and rerun your import.
Avatar of DarrenJackson

ASKER

dvz

Thanks for replying just to add NLS_LENGTH_SEMANTICS doesnt apply to sys or system isnt the repository part of this.
ASKER CERTIFIED SOLUTION
Avatar of schwertner
schwertner
Flag of Antarctica image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
schwertner

Thanks for the input I increased the column and it is working

Cheers