The source table has tbldate formated as long and I want it to be date.
I've created another table and set the correct format and have tried to convert to date or char, but I continue to get error messages when I execute my Insert SQL.
TO_DATE(TBLDATE ) gives me this message.
ORA-00932: inconsistent datatypes: expected NUMBER got LONG
TO_CHAR(TBLDATE ) gives me this
ORA-00932: inconsistent datatypes: expected CHAR got LONG
How do I get rid of the LONG format?
ORACLE 10g TOAD 9.1
I've created another table and set the correct format and have tried to convert to date or char, but I continue to get error messages when I execute my Insert SQL.
TO_DATE(TBLDATE ) gives me this message.
ORA-00932: inconsistent datatypes: expected NUMBER got LONG
TO_CHAR(TBLDATE ) gives me this
ORA-00932: inconsistent datatypes: expected CHAR got LONG
How do I get rid of the LONG format?
ORACLE 10g TOAD 9.1
Comment