Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: ORA-30484 aliasing analytics column
It should be:
SELECT first_time, first_time - LAG(first_time)
OVER (ORDER BY first_time) "SECONDS"
FROM v$log_history;
Regards,
Zoran
-- http://www.freelists.org/webpage/oracle-lReceived on Mon Apr 11 2005 - 11:45:47 CDT
![]() |
![]() |