Hello Team,
My DB Version is Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production.
I am having as shown below in a temp table.
The first column name is SPECID and second column is CHANGEDATE timestamp(9)

I am trying to insert records from temp table to spec table.
insert into spec select specid,cast(changedate as timestamp(0)) from temp;
I am getting ORA-25137: Data value out of range error
Please appreciate your help on this.