[oracle@localhost ~]$ sqlplus / as sysdba SQL*Plus: Release 19.0.0.0.0 - Production on Thu May 5 01:13:46 2022 Version 19.11.0.0.0 Copyright (c) 1982, 2020, Oracle. ?All rights reserved. SQL> show parameter max_str NAME ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? TYPE ? ? ? ?VALUE ------------------------------------ ----------- ------------------------------ max_string_size ? ? ? ? ? ? ? ? ? ? ?string ? ? ?STANDARD SQL> create table test (id varchar2(5000)); Table created. SQL> insert into test values(rpad('a',4200,'a')); 1 row created. SQL> commit; Commit complete. SQL> select length(id) from test; LENGTH(ID) ---------- ? ? ? 4000 |