Dears,
Could you please help me to find a SQL tool that will show me the list of the tables that have relation with the parent table. Example:
Select * from table_1
when I write join there will be listed tables that are related to the table_1 and after choosing one of the tables, it will also show the join based on the column PK and FK.
I have tried SQL promt but it is listing all the objects, not only the ones that I could join with table_1.
I am working on a DB with more than 300 tables and it is hard to find the relations between tables.
Thanks!
This query would help you find tables that reference a given table. You could also rework the query to give you the inverse if needed.