I’m using a restricted querying tool. is there something that just returns one row, returning a boolean say whether a certain object is a view or a table.
I’m using a restricted querying tool. is there something that just returns one row,
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.
You can query the data dictionary
will return you the
object_typeof all the objects that have a particular name that you have access to. Normally, there will just be one row returned but occasionally there will be two. A materialized view, for example, will have a table and a materialized view that share the same name. A package and a package body will also have the same name.