-- 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
On-device small language models with multimodality, RAG, and Function Calling
Google AI Edge advancements, include new Gemma 3 models, broader model support, and features like on-device RAG and…
How many addresses fit into a Cell?
Intro While developing a smart contract, I needed to store several addresses in persistent storage. At first this…
📝 Exploring Palindromic Partitioning: Solving the “Palindrome Partitioning” Problem 📝
Welcome to another journey through the realm of algorithms and problem-solving! Today, we’re delving into the intriguing “Palindrome…