Could someone tell me how/if it is possiable to select the table name from oracle in a report type query? It would be great to also include the schema name.
Maybe I'm misinterpreting your question, but I've sometimes found it useful to select the table name as a literal, so that I can easily identify which table my query is coming from.
select 'MYID' as schema_name, 'MY_TABLE' as table_name,
col1, col2, ... from my_table;
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.