oratab file
Hi,
I could use some assistance. I am new at this and have been requested to find out
the last time someone accessed the oracle database from the SYS.AUD$ table.
I have 5 servers with each oratab listing hundreds of databases. There in lies
my problem. To go through each one manually would take weeks.
What I am trying to do is run a script that will read the oratab file and isolate the name of the oracle_sid which I have accomplished. Some of those sids are obsolete so I need to account for that. Right now I am just trying to capture the ORA-01078 error and if I do to continue looping to the next ora_sid
Here is my work:
partial list:
snslcsunu03{oranet}-bash> cat /var/opt/oracle/oratab | cut -d':' -f1,3 | sed s/#//g | grep : | cut -d':' -f1
lsnr <<<=== bad name for a sid but it is a real one.<br />
ora10205
ora10205b
ora11203
musidt
musiot
cli112_64
cli112_32
dev101
============================== script
#!/usr/bin/bash
## PLEASE NOTE THE LOOPING ON THIS WORKS PROPERLY.
exec 1> /home/oracle/bash/outfile #records output to file. Later to be searched.
cat /var/opt/oracle/oratab | cut -d':' -f1,3 | sed s/#//g | grep : | cut -d':' f1>list #this strips the sid from the oratab
LIMIT=5 #this counter limits the number of interations through the list. It will be removed later.
a=0
for i in `cat list`; do
a=$(($a+1))
if [[ "$a" -eq 5 [[; then
break
fi
ORACLE_SID="$i"
if [ "$?" -eq 0 ] ; then #if a sid is returned zero means success and to continue processing.
export ORACLE_SID
sqlplus / as sysdba @startup.sql >outfile #grep the outfile for the ora error below.
fi
if [ -e `grep "ORA-01078" outfile` ] #if this is found in the list there is no spfile available
then
"exit" #<<<==== IT SEEMS TO HANG HERE. I NEED TO CONTINUE LOOPING<br />
/
continue #loop to the next oratab
fi
done
==========
output
ORA-01078 failure in processing system parametersThanks for your help in advance.
Any suggestions or help would be appreciated.
thanks,
bdby
Categories
- All Categories
- 178 LFX Mentorship
- 178 LFX Mentorship: Linux Kernel
- 775 Linux Foundation IT Professional Programs
- 384 Cloud Engineer IT Professional Program
- 175 Advanced Cloud Engineer IT Professional Program
- 75 DevOps IT Professional Program - Discontinued
- 7 DevOps & GitOps IT Professional Program
- 103 Cloud Native Developer IT Professional Program
- 7.7K Training Courses & Learning Paths
- 13 AI & ML Training
- 1 Blockchain & Decentralized Identity Training
- 35 Cloud & Containers Training
- 3 Cybersecurity Training
- 3 DevOps & Site-Reliability Training
- 2 Linux Kernel Development Training
- 2 Networking Training
- 2 Open Source Best Practice Training
- 5 System Administration Training
- 1 System Engineering Training
- 6 Web & Application Development Training
- 798 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 96 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 92 Storage
- 773 Linux Distributions
- 81 Debian
- 68 Fedora
- 24 Linux Mint
- 13 Mageia
- 24 openSUSE
- 151 Red Hat Enterprise
- 32 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 472 Linux System Administration
- 31 Cloud Computing
- 73 Command Line/Scripting
- Github systems admin projects
- 103 Linux Security
- 79 Network Management
- 102 System Management
- 46 Web Management
- 166 Mobile Computing
- 32 Android
- 119 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 407 Off Topic
- 128 Introductions
- 35 Study Material
- 1.1K Programming and Development
- 311 Kernel Development
- 723 Software Development
- 1K Software
- 418 Applications
- 183 Command Line
- 5 Compiling/Installing
- 71 Games
- 320 Installation
- Archived
- 183 Small Talk
- 2 LFD140 Class Forum
- 1.4K LFS258 Class Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)