About bearparc

A software development blog for the qualified developer

Blogroll

Application Server (24)
Business Intelligence (13)
Business Logic Layer (6)
C (2)
C++ (3)
CMMI (4)
Data Mining (3)
DataMart (11)
DataWarehouse (11)
ETL (7)
FAQ – Troubleshooting (8)
Framework (4)
Hardware (10)
Informatica Powercenter (6)
Investition (2)
J2ee (8)
Java (6)
JBoss (1)
Liferay (11)
LINUX (11)
objektorientiertes Design (2)
OLAP (7)
Oracle (49)
Projektmanagement (5)
Prozeßmodelle (4)
Software (33)
SQL (24)
Uncategorized (31)
Web 2.0 (5)
Weblogic (17)
wordpress (5)
XML (2)

WP-Cumulus by Roy Tanck and Luke Morton requires Flash Player 9 or better.

this ¤ ora-00845 ¤ powercenter ¤ informatica ¤ acquire ¤ liferay ¤ memory_target ¤ ora-00845: ¤ supported ¤ oracle ¤ linux ¤ spring ¤
ora-00845 linux ¤ ora-00845 ¤ ora-00845: memory_target not supported on this ¤ 0x8024402c ¤

www.brokerbase.ch network

Search



Add to Technorati Favorites Blogverzeichnis - Blog Verzeichnis bloggerei.de Deutsches Blog Verzeichnis blogoscoop Add to Google http://www.wikio.de

Search Results

Linux Oracle tuning parameter : Shutdown GUI

Modify the ‘inittab’ file to set boot level as 3:

Posted in LINUX, Oracle | June 5, 2009

Linux Oracle tuning parameter : Disable Unnecessary Daemons

/sbin/chkconfig –levels 2345 sendmail off
/sbin/chkconfig sendmail off

Posted in LINUX, Oracle | June 5, 2009

Linux Oracle tuning parameter : Tune TCP

To view current TCP settings, run command:
sysctl net.ipv4.tcp_keepalive_time
net.ipv4.tcp_keepalive_time = 7200 // 2 hours
where net.ipv4.tcp_keepalive_time is a TCP tuning parameter.

To set a TCP parameter to a value, run command:
sysctl -w net.ipv4.tcp_keepalive_time=1800
Read the rest of this entry »

Posted in LINUX, Oracle | June 5, 2009

Linux vs. Oracle Tuning, Error : ORA-00845: MEMORY_TARGET not supported on this system

The ORA-00845:can arises for the following two reasons on linux system.

1)If the shared memory which is mapped to /dev/shm directory is less than the size of MEMORY_TARGET or MEMORY_MAX_TARGET.
or,
2)If the shared memory is not mapped to /dev/shm directory.

Make sure /dev/shm is properly mounted. You can see it by,
df -h
Filesystem Size Used Avail Use% Mounted on

shmfs 30G 15G 15G 30% /dev/shm

As a root user,
mount -t tmpfs shmfs -o size=30g /dev/shm
In order to make the settings persistence so that it will affect after restarting machine add an entry in /etc/fstab similar to the following:

shmfs /dev/shm tmpfs size=13g 0

Posted in LINUX, Oracle | June 5, 2009

Linux Oracle tuning parameter : ulimits

To view current settings, run command:
ulimit -a

To set it to a new value for this running session, which takes effect immediately, run command:
ulimit -n 8800
ulimit -n -1 // for unlimited; recommended if server isn’t shared

Alternatively, if you want the changes to survive reboot, do the following:

- Exit all shell sessions for the user you want to change limits on.
- As root, edit the file /etc/security/limits.conf and add these two lines toward the end:
oracle soft nofile 16000
oracle hard nofile 20000
** the two lines above changes the max number of file handles – nofile – to new settings.
- Save the file.
- Login as the user1 again. The new changes will be in effect.

Posted in Uncategorized | June 5, 2009

Linux Oracle tuning parameter : Message queues

To view current settings, run command:
more /proc/sys/kernel/msgmni
more /proc/sys/kernel/msgmax

To set it to a new value for this running session, which takes effect immediately, run command:
echo 2048 > /proc/sys/kernel/msgmni
echo 64000 > /proc/sys/kernel/msgmax

Posted in LINUX, Oracle | June 5, 2009

Linux Oracle tuning parameter : shmmax and shmall

maximum amount of memory = shmall * pagesize
where pagesize = getconf PAGE_SIZE and shmall = cat /proc/sys/kernel/shmall

Posted in LINUX, Oracle | June 5, 2009

Linux Oracle tuning parameter : Semaphores

To view current settings, run command:
more /proc/sys/kernel/sem
250 32000 32 1024

To set it to a new value for this running session, which takes effect immediately, run command:
echo 500 512000 64 2048 > /proc/sys/kernel/sem
Parameters meaning:
SEMMSL – semaphores per ID
SEMMNS – (SEMMNI*SEMMSL) max semaphores in system
SEMOPM – max operations per semop call
SEMMNI – max semaphore identifiers

Posted in LINUX, Oracle | June 5, 2009

Linux Oracle tuning parameter : Shared Memory

To view current settings, run command:
more /proc/sys/kernel/shmmax

To set it to a new value for this running session, which takes effect immediately, run command:
echo 268435456 > /proc/sys/kernel/shmmax

To set it to a new value permanently (so it survives reboots), modify the sysctl.conf file:

kernel.shmmax = 268435456

Posted in LINUX, Oracle | June 5, 2009

XML Dokumente in der Datenbank speichern

Ein interessanter Artikel zur Performanceoptimierung beim Speichern von XML Dokumenten.
Read the rest of this entry »

Posted in Oracle, XML | March 12, 2007