Oracle Installation and Unix Question
21. | How can you get the details of SMON process? |
---|---|
You can get the details of SMON process by using the ps –ef | grep smon command. | |
22. | Which command would you to use to check how much hard disk space is free in Linux? |
---|---|
The df –k or du –sk commands can be used to check the free hard disk space in Linux. | |
23. | How do you find out the number of instances that are running on a server? |
---|---|
You can check the /etc/oratab file on a server to find out all the Oracle instances running on that server. | |
24. | How can you replace a string in a file in the vi editor? |
---|---|
A string in a file can be replaced by using the %s/<old string>/<new string>/g command. | |