Invoking of the Large Data Editor

ed10k

Member²
How can I invoke the Large Data Editor for a VARCHAR2 column with the length < 20 characters?

I would like to see the cell value in HEX!

SQL:
select cast('A' || chr(9) || 'B' as varchar2(20)) from dual;

This is OK, a mouse click on cell button and then Hex-Tab.

But...

SQL:
select cast('A' || chr(9) || 'B' as varchar2(19)) from dual;

How can I see the cell value in HEX in this case?
 
The Large Data Editor button is only displayed for large columns. You would have to use an appropriate cast expression.
 
Change of the SQL-statement is cumbersome.
And when I waited 2 hours for result of a SQL-statement then I don't like to restart them.

Can you add a menu-item or perhaps a context menu item (rigth mouse click) to invoke the Large Editor?
 
Back
Top