What is the maximum size of VARCHAR2(),
Is it 3000?
If yes,
If I create table with VARCHAR2(3000) is it wasting the memory or it will cover only what space I used?
For example,
Create table x (name VARCHAR2(3000));
and
Insert into x (name) values (SQL);
I used only 3, Does this waste 2997 or not?
Start Free Trial