Does anyone know how to use a select statement like the following but instead of having it report on days have it report on hours? i.e. from now -3 hours and less than 15 days.
select filespace_name as "Filespace", node_name as "Node",
days(current_date)-days(backup_end) as
"Last Backup",dayname(backup_end) as "Day
of Week" from filespaces where (days(backup_end) <
(days(current_date)-1) and
(days(current_date)- days(backup_end) <= 15))
