-- 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
Maximizing Your Job Search: Insights from Andronica Klaas, Meta Engineer
Want to maximize your chances of landing a job in the tech industry? In this article, Andronica Klaas…
Good News!
Hey hey. It’s Zada, your new neighbor. I am pleased and very much happy to announce that I…
Unraveling the Layers of System Requirements in Software Architecture
Greetings, Tech Enthusiasts! 👋 It’s been a while since I’ve delved into the world of blogging, and what…