Show Routing Table :
netstat -r
Check ORA errors in the Logs:
grep ^ORA- *log |cut -f2 -d"-"|cut -f1 -d:|awk '{print "ORA-" $1}'|sort -u
Inzip CPIO Files :
cpio -idmv <
Sort Files By Size :
ls -l |sort -k 5
Find Command archive and move to another Folder :
find ./ -name "*.arch" -mtime +1 -exec mv {} /u01/;
Find Command archive and Remove it:
find ./ -name "*.ARC" -mtime +1 -exec rm {} \;
Find Command with Zip :
find ./ -name "*.ARC" -mtime +1 -exec gzip {} \;
Find Command With List :
find ./ -name “*.ARC” -mtime +1 -ls
Thank you
Osama Mustafa
Like this:
Like Loading...
Related
Published by Osama Mustafa
Osama Mustafa has progressive experience in Oracle Products, community. He recently served as Oracle Database Administrator.
Provide Database Implementation Solutions, High Availability Solution, Infrastructure and Storage Planning, Install, Configure, Implement and manage Oracle E-Business Suite environments. Architect, build and support highly-available Oracle EBS, Database and Fusion Middleware environments including appropriate reporting, Installs, configures, upgrades, tunes, and maintains production, development and test databases.
View all posts by Osama Mustafa
Replace the last one with:find ./ -name “*.ARC” -mtime +1 -ls
LikeLike
Thank you Seth 🙂
LikeLike