Aix

How to Increase paging space logical volume size in AIX ?

To show the current paging space volume, its size along with other information use the ‘lsps’ command: # lsps -a Page Space      Physical Volume   Volume Group Size %Used Active  Auto  Type Chksum hd6             hdisk1            rootvg         512MB     2   yes   yes    lv     0 The paging space may be increased on the fly using the ‘chps’ command. In …

How to Increase paging space logical volume size in AIX ? Read More »

Delete Files Older Than x Days on Linux / Unix

The find utility on linux allows you to pass in a bunch of interesting arguments, including one to execute another command on each file. We’ll use this in order to figure out what files are older than a certain number of days, and then use the rm command to delete them. Command Syntax find /path/to/files* -mtime …

Delete Files Older Than x Days on Linux / Unix Read More »

Operating System Tuning for Oracle Database

This chapter describes how to tune Oracle Database. It contains the following sections: Importance of Tuning Operating System Tools Tuning Memory Management Tuning Disk I/O Monitoring Disk Performance System Global Area Tuning the Operating System Buffer Cache 1.1 Importance of Tuning Oracle Database is a highly optimizable software product. Frequent tuning optimizes system performance and …

Operating System Tuning for Oracle Database Read More »

Tunning AIX for Oracle Database

Memory and Paging Disk I/O Issues CPU Scheduling and Process Priorities Oracle Real Application Clusters Information Setting the AIXTHREAD_SCOPE Environment Variable Memory and Paging Memory contention occurs when processes require more memory than is available. To cope with the shortage, the system pages programs and data between memory and disks. Controlling Buffer-Cache Paging Activity Excessive …

Tunning AIX for Oracle Database Read More »

AIX Delete problem

Today one user complained, that he is not able to delete files. Most probably this was due to non printable charter in the file name. # cd /oracle # ls -ltr total 7151632 drwxr-xr-x    2 oracle   oinstall        256 May 27 2008  lost+found drwxr-xr-x    3 oracle   oinstall        256 May 28 2008  app drwxr-xr-x    2 oracle   oinstall       …

AIX Delete problem Read More »

Scroll to Top