© Kim Berg Hansen 2020
K. Berg HansenPractical Oracle SQLhttps://doi.org/10.1007/978-1-4842-5617-6_14

14. Analyzing Activity Logs with Lead

Kim Berg Hansen1 
(1)
Middelfart, Denmark
 

Logs can be many things, and sometimes you are lucky that each line of the log is self-contained and has all the data you need to analyze the log. But most often a row in a log table pinpoints that at this exact moment in time, this specific activity occurred – and the interesting fact you need to analyze is how long time there was between rows in the log.

This is where analytic functions lag and lead come in very handy, as they can be used on a given row to retrieve information from previous rows (lag) or next rows (lead) in a given order. You can often choose to use either ...

Get Practical Oracle SQL: Mastering the Full Power of Oracle Database now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.