Hi Shialaja,
if you are speaking of the length of columns in the DB the solution is the command
"alter table modify (column_name datatype)".
With an alter table command you won't loose data (except if you drop columns, of course).
You can find details of the alter table statement in the Oracle documentation,e.g. here:
Alter Table
John