Unix for the Oracle DBA – Part 1
- Posted by Gavin Soorma
- On July 17, 2009
- 0 Comments
Locating Files under a particular directory find . -print |grep -i test.sql Using AWK in UNIX To remove a specific column of output from a UNIX command – for example to determine the UNIX process Ids for all Oracle processes on server (second column) ps -ef |grep -i oracle |awk ‘{ print $2 }’ Changing […]
Read More