I am a beginner using SQL Plus, so this might sound like a stupid question but I really don't know how to do it. I cannot find a way to view all the tables I've created. I try a large number of commands like
SELECT owner, table_name
FROM dba_tables`
or
SELECT table_name
FROM user_tables
But i always end with a few thousand results. Pic after executing the first command
SELECT owner, table_name
FROM dba_tables
Basically i created about 15 tables since i started using SQL Plus, and i forgot some of the names. I would like to have a way to check just the tables I created, without having a few thousand unnecessary other names in there. Does anybody know how to do that? I will add that i'm using the SYSTEM user and oracle express.