-- 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
How a Game Designer and a Programmer сan build what can’t be done alone?
Ready to admit you can’t do everything alone? 👀 «Momentum» — is an original column from my Telegram…
ML Kit Document Scanner in action
Recently, ML Kit released a new library to digitize physical documents directly from your Android application. ML Kit…
Integration Testing Vercel Serverless Functions with OpenTelemetry
Today you’ll learn how to create production-ready serverless functions using Vercel. It will include adding distributed tracing with…