When I describe an Oracle TYPE in SQL*Plus, what does SQL*Plus do “under the bonnet” – Is it calling DBMS_METADATA (or similar)? Or is it querying the data dictionary directly?
Or something else entirely?
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 obviously use
alter session set sql_trace=trueto answer such questions.For
I find the following relevant SQL Statements in my trace file:
So, under the bonnet, SQL*Plus uses plain SQL.