Say a table has several subclass types. How can I see all columns from different types in sqldeveloper? In table view, only can see common columns. Thanks.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is not possible in SQL Developer as it currently stands (as of 1.5.4).
Incidentally it isn’t possible in SQL*PLus either. Setting
DESCRIBE DEPTH 2just shows more detail regarding the super type:(I checked.
set describe depth 3doesn’t do anything, what it controls is the expansion of types used as attributes of the displayed types.)I don’t know the reason for sure but I would hazard a guess that it is something to do with the unbounded number of levels of sub-types permitted. Furthermore, Types are relatively new and still under appreciated in the database. Oracle is primarily relational and procedural, and the object-oriented features are treated as red-headed step-children.
Of course, SQL Developer is extensible, so it would be possible to write an addon which does this expansion. Hmmm….