Preventing Type expansion in SQL Window

Olafur

Member
Hi,
I have been going over the configuration options and manual. But can't find any reference to prevent type expansion in the SQL window. For large/complex types, I would prefer just a single column and the option to open it in a new window similar to Cursor columns.

An example would be just getting two column result set from this query, instead of the type expansion to four columns:

select
sysdate as curr_date,
sys.Aq$_Agent(name => 'Name', address => 'Address', protocol => 0) as type_test
from dual;

Is this possible?
 
Back
Top