|
-
Hi,
The maximum length of VARCHAR2 data is 4000 bytes when creating a table with VARCHAR2 columns,
but when using stored procedures/functions the maximum if VARCHAR2 data is 32767.
create table T1 (a varchar2(4001));
will succeed.
create table T1 (a varchar2(4001));
will fail.
declare
str varchar2(32767);
begin
null;
end;
/
will work
declare
str varchar2(32768);
begin
null;
end;
/
will fail
regards,
dbaora
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|