SOLVED
ORA-01723: zero-length columns are not allowed
Asked by OracleDba••18 views•oracle
12345678910111213141516171819202122232425262728293031323334353637
ORA-01723: zero-length columns are not allowed
ORA-01723: zero-length columns are not allowed
Cause:
Columns with zero length were not allowed.
Action:
Correct the use of the column.
Example to reproduce ORA-01723 -
SQL> Create table mytable as
select
ename,
null age,
null doj,
null mgrname
from
scott.emp ;
null age
*
ERROR at line 4:
ORA-01723: zero-length columns are not allowed#oracle#error