Give two UNIX kernel parameters that effect an Oracle install

Answers were Sorted based on User's Feedback



Give two UNIX kernel parameters that effect an Oracle install..

Answer / raja

SHMMNI=Max no of shared segments,
SHMMAX=Max size of each shared segments
SHMSEG=specifies the semaphores

Is This Answer Correct ?    7 Yes 2 No

Give two UNIX kernel parameters that effect an Oracle install..

Answer / tanweer

SHMALL
SHMMAX
SHMMNI

These 3 kernel parameters are very importnat for installing
Oracle in Linux / UNIX OS..

Is This Answer Correct ?    0 Yes 0 No

Give two UNIX kernel parameters that effect an Oracle install..

Answer / parthasarathy

kernel.msgmnb -maximum size of a messag
kernel.msgmax-default maxmimum size of a mesage queue
kernel.shmmax-maximum shared segment size
kernel.shmall-maximum number of shared memory segments
kernel.sem-semaphores

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Unix Commands Interview Questions

What is the comma to show the space allocation of files?

0 Answers  


What is the functions of zambie process?

3 Answers  


How do I delete files from command prompt?

0 Answers  


How do I use nslookup?

0 Answers  


Who invented grep?

0 Answers  






distinguish between paging and swapping?

3 Answers   Infosys,


Write a command that will display files in the current directory, in a colored, long format.

0 Answers  


what is the advaantage of each user having its own copy of the shell?

2 Answers   Infosys,


what is the use of uniq commmand?

8 Answers  


what is the advaantage of each user having its own copy of the shell?

0 Answers   BMC, CNS, DELL, Infosys,


What is unix command?

0 Answers  


When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include<stdlib.h> # include <stdio.h> int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:

0 Answers  


Categories