Hi, When I try to rename the report on some other name which uses non-standart symbols some error occurs with the following message "ORA-01401 inserted value too large for column". Do you know what the cause might be?
Sorry, ReportBuilder doesn't natively support MBCS. Try changing the datatype for the report name in the database table definition to support a multi byte character as you are getting an Oracle database error.
Thanks, that worked great. I just changed ITEM_NAME Type from CHAR(60) (as was in your Oracle demo scripts) on VARCHAR2 and everything started to work properly.
Comments
datatype for the report name in the database table definition to support a
multi byte character as you are getting an Oracle database error.
Cheers,
Jim Bennett
Digital Metaphors
http://www.digital-metaphors.com
info@digital-metaphors.com
I just changed ITEM_NAME Type from CHAR(60) (as was in your Oracle demo
scripts) on VARCHAR2 and everything started to work properly.