Skip to main content

Scripts under COMMON_TOP/admin/scripts on 11i

Following are the different scripts under COMMON_TOP/admin/scripts/$CONTEXT_NAME and their usages,

1. adapcctl.sh --> Apache Startup/Shutdown script
2. adfrmctl.sh --> Forms server Startup/Shutdown script
3. adrmsctl.sh --> Forms metric server Startup/Shutdown script
4. adfmcctl.sh --> Forms metric client Startup/Shutdown script
5. adcmctl.sh --> Concurrent manager Startup/Shutdown script
6. adautocfg.sh --> Autoconfig Startup/Shutdown script
7. adtcfctl.sh --> TCF Socket Startup/Shutdown script
8. adaprstctl.sh -->  Start / Stop Apache Web Server Listener in restricted mode
9. addisctl.sh --> Discoverer Startup/Shutdown script
10. adalnctl.sh --> Applications RPC Listener process Startup/Shutdown script
11. jtffmctl.sh --> JTF Fulfillment server Startup/Shutdown script

12. adstrtal.sh --> Start all of the scripts above using this script
13. adstpall.sh --> Stop all the services from the above script using this script


Comments

vimal said…
QUS:Employees who dont have subordinates using sunqueries?
i need answer for this
This comment has been removed by the author.
Ques:Sir please give me an example of joining two tables if one condition belongs to emp table nd other condition belongs to dept table
LIKE
display all the managers nd clerks who work in account department???
Mithun Ashok said…
Hi Vimal,

Employees who dont have subordinates using subqueries.

select empno, ename from emp where empno not in (select mgr from emp where mgr is not null);

Regards,
Mithun
Mithun Ashok said…
Hi Abhijit,

Here is the answer,

select ename, job, dname,dept.deptno from emp, dept
where emp.deptno=dept.deptno
and job in ('MANAGER','CLERK')
and dname='ACCOUNTING';

Regards,
Mithun
Logu said…
hello Sir, I'm loganathan From trichy, tamil nadu.
Today i finished my 3rd class in SQL..
your teaching was awesome sir...
but i hsve some language problem and also in commmunication skills...
i need some practice for developing my communication skill sir..
thank you...Sir

Popular posts from this blog

Basics of RDBMS

Data Small set of information becomes data, this set of information helps make decision. Data is always some useful information. Database Place where you store the data. Database represents some aspect of the real world called "miniworld". A database is designed, built and populated with data for a specific purpose. It has intended group of users and some preconceived applications in which these users are interested. In other words, a database has some source from which data is derived, some degree of interaction with events in the real world and an audience that is actively interested in the contents of the database. Database can also be defined as collection of one or more tables. Ex: Mobile, human brain etc DBMS (Database Management System ) Is a program that stores retrieves and modifies data in the database on request. Study of different techniques of design, development and maintenance of the database Types of DBMS These types are based upon their m...

Installing Oracle 10g Database

Once you have downloaded the software from www.oracle.com/downloads , following steps can be used to install the software. 1. Unzip the dump downloaded from oracle.com 2. Once Unzipped, click on setup.exe to run Oracle Universal Installer Program. This will open a window as shown below.