-- 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
Desplegar imagen docker usando AWS CodeBuild.
¿Qué es AWS CodeBuild? AWS CodeBuild es un servicio de integración continua totalmente administrado que compila código fuente,…
How to Use Dependency Injection with Node.js
Node.js has emerged as a dominant force in the world of web development, allowing developers to build highly…
Building a Mobile Game with Phaser and Ionic Vue: Part One
I love playing video games, especially console and mobile games. I learned about Phaser (an open source framework…