-- 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 to Fortify and Safely Test Your Website Against Hackers
Configuring SafeLine for Website Protection Introduction Before diving into the configuration, ensure that SafeLine is properly installed on…
🎨 Beginner-Friendly Guide ‘Number of Ways to Paint N 3 Grid’ – LeetCode 1411 (C++, Python, JavaScript)
Combinatorics and dynamic programming can often feel like solving a massive puzzle with missing pieces. This problem is…
Magic of window.open in browsers
The window object is supported by most modern browsers. It represents the browser window. The window is the…