Page 29
Page 28
Page 27
Page 26
Page 25
Page 24
Page 23
Page 22
Page 21
Page 20
Page 19
Page 18
Page 17
Page 16
Page 15
Page 14
Page 13
Page 12
Page 11
Page 10
Page 09
Page 08
Page 07
Page 06
Page 05
Page 04
Page 03
Page 02
Lot of Oracle Apps 11i beginners ask me about Interview questions
specially those who are with 2 years or less work exp. as Apps DBA.
These apps 11i Technical Interview Questions are Just for reference
purpose & understanding Oracle applications 11i. Oracle Apps Interview
questions which Interviewer can ask you depends on lot of things
like your work experience,your CV, client's requirement, role for which you are
applying. I don't take any guarantee for any answers , all answers mentioned
here are based on my expertise & feedback I receive from you. If you think any answer
is not right or want to discuss about any 11i apps question mentioned here
Contact Me.
As there is no short cuts for success and same applies to
your role as oracle Apps 11i DBA so don't just rely on these questions
but try to understand oracle application E-Business Suite Via these questions.
To check more interview Q's click Next on bottom of this page.
I'll keep updating Interview questions from time to time.
Now without discussing too much lets start with very common question
which almost all Interviewer's ask from DBA with 2-4 years of Exp.
(If you don't know answer don't worry believe me 90% apps dba beginners
don't know answer.
 
Q. What is wdbsvr.app file used for? What's full path of this file? What's
significance of this file ?
I'll again suggest you don't just remember answer & try to solve mystery
behind this file. First where this file exists ? You can find this file
under $IAS_ORACLE_HOME/Apache/modplsql/cfg
Based on file location I am sure you can say this is related to Apache,
& looking into modplsql/cfg , I am sure you will say its related to mod_pls
(mod plsql component of Apache/Oracle 11i WebServer) configuration file. This file is used by mod_plsql component
of Apache to connect to database. So when you type url
http://hostname:port/pls/SID , whenever Apache(11i Web Server) finds that request is for
/pls/ then Apache delegates this request to mod_pls component which in turn
pick this file & check if there is any DAD with name SID (in our example its
VISION11I) &
Sample entry in wdbsvr.app
[DAD_VISION11I]
connect_string = VISION11I
password = apps
username = APPS
default_page = fnd_web.ping
On typing http://hostname:port/pls/VISION11I , it will connect to database
using apps schema & will return you page fnd_web.ping ( where fnd_web is package & ping is procedure
or vise versa).
 
 
So story about this file doesn't stop here , this url which I mentioned
about is quite useful in troubleshooting so you can check if database connection is working
fine or not. Another thing you want to check about this file is since it stores
APPS password you need to change here whenever you change apps password .
 
 
|
Next Page
|