I can round the current datetime to the the last quarter hour, and show every date for the last year, but I am looking for every 15 minutes for each day from '1-Oct-13' to the current date.
Here is what I have so far:
SELECT
trunc(sysdate, 'mi') -
numtodsinterval(mod(to_char(sysdate,'mi'),15),'minute') as Quarter_Hr,
(sysdate-365 (LEVEL -1)) AS DATES
FROM DUAL connect by level <=( sysdate-(sysdate-365))
Any help would be appreciated. I am using this as a dimension table to evaluate performance on a quarter hour basis.