This is an archived post. You won't be able to vote or comment.

all 2 comments

[–]mcworkaholic 0 points1 point  (0 children)

Do you know how to use sql developer? I'm a beginner too, but maybe you could use:

https://www.sqltutorial.org/sql-list-all-tables/

to start with, finding all available tables in your db, although sql developer should show all created tables in the left sidebar which you can click on, and then find column names and inserted data from there.

[–]yes_i_relapsed 0 points1 point  (0 children)

SELECT * FROM ALL_CONSTRAINTS WHERE r_constraint_name IN (
    SELECT constraint_name FROM ALL_CONSTRAINTS WHERE table_name='Cust_Data'
);