-- Run this once — it generates ready-to-run queries
SELECT 'SELECT ''' || table_name || ''' AS table_name, COUNT(*) AS rows_last_45_days FROM ' ||
table_name || ' WHERE INTERNTIMESTAMP >= SYSDATE - 45;'
FROM user_tab_columns
WHERE UPPER(column_name) = 'INTERNTIMESTAMP'
AND data_type LIKE 'TIMESTAMP%'
ORDER BY table_name;
Related Posts
Guide to Blockchain Node Providers
Blockchain technology has greatly impacted the way we handle data and transactions. It’s the core technology behind cryptocurrencies…
Bringing the I/O magic to Berlin
Here are some highlights from what we announced both on stage in Berlin and elsewhere in the world…
Cloud, Edge, or Local: Choosing the Right Architecture for Smart Security Cameras
The way smart security cameras process data—cloud, edge, or local—can make or break your security system’s performance, cost,…