I am running a file in SQL Plus and can only get the "feedback" (how many rows updated or whatever). Can the DBA's turn off the "set echo on" command? The code I am running is:
set linesize 80
set pagesize 0
set echo on
set feedback on
set termout on
set heading on
set verify on
spool /home/walterg5/BetaFlows/data/BackupCOLI_Tables.txt
UPDATE portfolio_dm_owner.jctl_cycle_date
SET curr_cycle_date = '01-MAY-2012';
spool off
My results are:
1 row updated.
set linesize 80
set pagesize 0
set echo on
set feedback on
set termout on
set heading on
set verify on
spool /home/walterg5/BetaFlows/data/BackupCOLI_Tables.txt
UPDATE portfolio_dm_owner.jctl_cycle_date
SET curr_cycle_date = '01-MAY-2012';
spool off
My results are:
1 row updated.