Named tabs (enhancement request)

Bart

Member²
Just a minor enhancement request (would be really appreciated by some end users):

When using multiple tabs in the query window we would like to be able to influence the tabnames.

E.g. selecting more than one query and execute:

Code:
select *
from   user_objects
;

select *
from   user_jobs
;
would lead to tabnames 'select user_objects'
and 'select user_jobs'

Not bad, could be worse.

But why not let the user decide?
For example:

Code:
/* <TABNAME>objects</TABNAME> */
select *
from   user_objects
;

/* <TABNAME>jobs</TABNAME> */
select *
from   user_jobs
;
or something similar (shorter/easier)

This would give tabnames objects and jobs.

Of course sometimes we have much more queries making this feature more important.

Regards,
Bart Verstegen
 
Ever nicer if a line in comment at the top of the statement is used (Perhaps in "specific comment" style):

Code:
/* Test */
select
  *
from
  dual;
 
Back
Top