In Oracle 11g, how do I extract the tables created by me from user_tables (not displaying 100s of tables that are there by default)?
I wrote the following query to get the list of all user tables,
SELECT table_name FROM user_tables;
However, this gives me a very long list of tables, which are not relevant to me. I only want a list of tables that were manually created by me. I know there are only 4-5 tables created by me in the database as of now.