I wanted to check the allocated in-memory size of my oracle database. I tried with the query below, but it is not working
SELECT pool,alloc_bytes,used_bytes,populate_status FROM V$INMEMOTY_AREA;
Error- ORA-00942: table or view does not exist
I wanted to check the allocated in-memory size of my oracle database. I tried with the query below, but it is not working
SELECT pool,alloc_bytes,used_bytes,populate_status FROM V$INMEMOTY_AREA;
Error- ORA-00942: table or view does not exist
That's because you have a typo in the view name. Instead of the word
memory
you mistypedmemoty
.And here's a proof:
Your query
My query
Enjoy!