Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SQL*Plus: Release 9.2.0.1.0 - Production on Wed Sep 3 09:32:19 2003
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
Connected to:
Oracle8i Enterprise Edition Release 8.1.5.1.0 - Production
With the Partitioning and Java options
PL/SQL Release 8.1.5.1.0 - Production
SQL> desc drop_me
Name Null? Type
----------------------------------------- -------- ----------------------------
F1 VARCHAR2(10)
DT_FIELD DATE
1* alter table drop_me modify F1 varchar2(200)
SQL> /
Table altered.
SQL> desc drop_me
Name Null? Type
----------------------------------------- -------- ----------------------------
F1 VARCHAR2(200)
DT_FIELD DATE
SQL> alter table drop_me modify F1 varchar2(23);
alter table drop_me modify F1 varchar2(23)
*
ERROR at line 1:
ORA-01441: column to be modified must be empty to decrease column length
SQL>