Using Macro in Command Window

Vio

Member
Hi all,
I tried to create a macro for something like this to use in Command Window:

set echo on
set define on
col spoolname new_value spoolname

But all I get is something like that:
SQL> set echo on
set define on
col spoolname new_value spoolname

instead of
SQL> set echo on
SQL> set define on
SQL> col spoolname new_value spoolname

Any (working) suggestion?
 
This will indeed not work on the "Dialog" tab page. I have added this to the list of enhancement requests.

As a workaround you can place these commands in a separate file and then create a macro to execute it with @.
 
Back
Top