startSqlTrace.sh : start sql traces
#!/bin/bash
echo password:
read SYSPASS
sqlplus system/$SYSPASS@WITRDB << FIN
alter system set sql_trace=true;
exit
FIN
stopSqlTrace.sh : stop sql traces
#!/bin/bash
echo password:
read SYSPASS
sqlplus system/$SYSPASS@WITRDB << FIN
alter system set sql_trace=false;
exit
FIN