-- 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
PICABench: How Far Are We from Physically Realistic Image Editing?
Can AI Make Photo Edits Look Totally Real? Ever wondered why a removed object sometimes leaves a ghostly…
[July 2025] AI Community — Activity Highlights and Achievements
[July 2025] AI Community — Activity Highlights and Achievements Let’s explore highlights and accomplishments of the Google AI communities over…