Is it possible to get results similar to the Oracle DESCRIBE
command for a query? E.g. I have a join among several tables with a restriction of the columns that are returned, and I want to write that to a file. I later want to restore that value from a file into its own base table in another DBMS.
I could describe all of the tables individually and manually prune the columns, but I was hoping something like DESC (select a,b from t1 join t2) as q
would work but it doesn't.
Creating a view isn't going to work if I don't have create view
privileges, which I don't. Is there no way to describe a query result directly?
If you plan to re-use the query, it may make sense to create a view for it.
You can comment on a database view in the same way that you can for a table:
To find comments on a view, execute this:
References:
How to create a comment to an oracle database view
http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:233014204543
NOTE: This URL states that the SQLPLUS DESCRIBE command is only supposed to be used with a "table, view or synonym" or "function or procedure". This means that the target of DESCRIBE must be an existing database object.
http://docs.oracle.com/cd/B19306_01/server.102/b14357/ch12019.htm
As an SQLPLUS command, DESCRIBE cannot dynamically parse an SQL statement. All the information returned by DESCRIBE is stored in the data dictionary.