I tried to add a table to cache in Oracle
alter table Test_Table cache;
So now how can I remove it from cache?
You can do:
alter table Test_Table NOCACHE;
But be aware that using the cache doesn't actually pin the table in cache. It just tells oracle to handle the blocks differently once they get there. Tom Kyte has a good explanantion on this.