Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

ORA-01723: zero-length columns are not allowed

141 views
Skip to first unread message

FS

unread,
Oct 12, 2000, 3:00:00 AM10/12/00
to
Hello ,

i have Oracle 8.1.6 and would create an table from an view (create table xxx as select * from view).
The describe of the view has the following fields:

 ERROR                                     NOT NULL NUMBER(10)
 ERROR_TYPE                                NOT NULL VARCHAR2(3)
 LANGUAGE                                  NOT NULL VARCHAR2(1)
 ERROR_DC                                           VARCHAR2(70)
 IPRODUCT                                           NUMBER
 ERROR_FLAG                                         VARCHAR2(1)
 UP_USER                                   NOT NULL NUMBER(8)
 UP_DATE                                   NOT NULL DATE
 UP_NO                                     NOT NULL NUMBER(3)

The column iproduct is only number. I receive everytime the Ora-01723, is this an bug?

Thanks

Regards

Axel

Martin Haltmayer

unread,
Oct 15, 2000, 7:29:26 PM10/15/00
to FS
Hi Axel,

your view looks okay. Try

create table xxx as select * from v_yyy where 0 = 1;

and then

insert into xxx select * from v_yyy; commit;

Martin

0 new messages