Skip to Main Content

Enterprise Manager

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

ORA-00910: specified length too long for its datatype RMB 2.6 Upgrade

3880508Feb 15 2019 — edited Feb 15 2019

I followed the instructions to change the max string size parameter from standard to extended.  I am using 12.2.

SQL> show parameter max_string_size;

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
max_string_size                      string      EXTENDED

I can create a table

create table sys.testing (col1 number, col2 varchar2(32000)); without issues. 

However if I create a new schema and try to create the table for the schema I get ORA-00910.

CREATE USER CISADM IDENTIFIED BY WwellCcooMmee13 DEFAULT TABLESPACE CISTS_01 TEMPORARY TABLESPACE TEMP;

create table cisadm.testing (col1 number, col2 varchar2(32000)); Fails.

Please advise.

Comments

Post Details

Added on Feb 15 2019
1 comment
445 views