Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ERROR in EXTRACT Function

222793Aug 27 2002
I have a PL/SQL procedure which extract hour, minute and sencond from a datetime value.
It runs correctlty in oracle 9.1 release, but with oracle 9.2 it generate PLS-00656 error
on HOUR, MINUTE, SECOND

below the instruction :

xnu1:= extract(HOUR from sda2) * 3600;
xnu2:= extract(MINUTE from sda2) * 60;
xnu3:= extract(SECOND from sda2);

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 24 2002
Added on Aug 27 2002
0 comments
329 views