diff --git a/sql/38_dictionary_stats.sql b/sql/38_dictionary_stats.sql
new file mode 100644
index 0000000..044ffaa
--- /dev/null
+++ b/sql/38_dictionary_stats.sql
@@ -0,0 +1,10 @@
+prompt
Dictionary Stats / Fixed Objects Stats
+
+SELECT
+ to_char(max(end_time),'dd/mm/yyyy hh24:mi') latest, operation
+FROM
+ dba_optstat_operations
+WHERE
+ operation in ('gather_dictionary_stats', 'gather_fixed_objects_stats')
+GROUP BY
+ operation;