29.12.16

Steps to apply adpatch on EBS R12

How to apply patch on EBS R12.

Patching in oracle apps is very simple. We have to put application in maintains mode . This step is important .   

So for this we have Eight steps:---

1. Stop application tier.



2. Turn the maintains mode enable e.g.
            i. run adadmin (for this you have to run apps env)
           ii. go for 5 and after that go for 2 (1 for disable),   that will run "adsetmmd.sql" from 
                $AD_TOP/patch/115/sql
     

3.Copy the patch to oracle user folder

4. UNZIP the patch and change directory to patch number.

5. Set the PATH for home,bin.

6.  Run "adpatch"  and go with default value and give "system" and "apps" password

7. It will prompt for drive than give the patch drive name e.g. u"patch_no".drv




8. After applying the patch turn maintenance mode disable by going through 2nd step.  

11.5.15

BASICS OF LINUX FOR ORACLE APPS


Hi all, In this I will discuss you with the basic of linux that we used on daily bases. Now a days you will find linux servers every where. So let me help you understand this platform.





First I will tell you about the directory structure of Linux as below.





/ The root directory, the top-level directory in the FHS. All other directories are subdirectories of root, which is always mounted on some partition. All directories that are not mounted on a separate partition are included in the root directory


/bin Essential command line utilities. Should not be mounted separately; otherwise, it could be difficult to get to these utilities when using a rescue disk.



/boot Includes Linux startup files, including the Linux kernel. Can be small; 16MB is usually adequate for a typical modular kernel. If you use multiple kernels, such as for testing a kernel upgrade, increase the size of this partition accordingly.



/etc Most basic configuration files.



/dev Hardware and software device drivers for everything from floppy drives to terminals. Do not mount this directory on a separate partition.



/home Home directories for almost every user.



/lib Program libraries for the kernel and various command line utilities. Do not mount this directory on a separate partition.



/mnt The mount point for removable media, including floppy drives, CD-ROMs, and Zip disks.



/opt Applications such as WordPerfect or StarOffice.



/proc Currently running kernel-related processes, including device assignments such as IRQ ports, I/O addresses, and DMA channels.



/root The home directory of the root user.



/sbin System administration commands. Don't mount this directory separately.



/tmp Temporary files. By default, Red Hat Linux deletes all files in this directory periodically.



/usr Small programs accessible to all users. Includes many system administration commands and utilities.



/var Variable data, including log files and printer spools.



Now you have simple idea about structure . please wait for next post .