view counter

Feed items

Implementing PCP

Hi Folks!! Well its been really a long time since i posted on my blog. Today i would like to discuss on Implementing PCP (Parallel Concurrent Processing) in a RAC/NON RAC Environment. There are plenty of articles on metalink on Implementing PCP but i will be discussing the fine grain details of PCP in this article.

PCP:

Implementing PCP

Hi Folks!! Well its been really a long time since i posted on my blog. Today i would like to discuss on Implementing PCP (Parallel Concurrent Processing) in a RAC/NON RAC Environment.

Implementing PCP

Hi Folks!! Well its been really a long time since i posted on my blog. Today i would like to discuss on Implementing PCP (Parallel Concurrent Processing) in a RAC/NON RAC Environment.

Tracing a script in Unix/Linux

Its been a while since i posted on my blog, Since now my other Project went live and we had a smooth first month end close, I am going to post a series of articles on learnings, new tools and tips and tricks on troubleshooting and tuning which i learnt.

Tracing a script in Unix/Linux

Its been a while since i posted on my blog, Since now my other Project went live and we had a smooth first month end close, I am going to post a series of articles on learnings, new tools and tips and tricks on troubleshooting and tuning which i learnt.

Tracing a script in Unix/Linux

Its been a while since i posted on my blog, Since now my other Project went live and we had a smooth first month end close, I am going to post a series of articles on learnings, new tools and tips and tricks on troubleshooting and tuning which i learnt.

Netcat Tool

Its been long time since i posted on my blog, i have been very busy at the new project. I recently came across a new unix utility called Netcat. Netcat allows you send and receive data across the machines using TCP/UDP Protocols.

For example if i need to tar an oracle home and and untar on the target server i can use the following commands

On Source


  • cd $ORACLE_HOME

  • tar cvf - * | netcat <TARGET host><SOME port>

On Target


  • cd to destination ORACLE_HOME

Netcat Tool

Its been long time since i posted on my blog, i have been very busy at the new project. I recently came across a new unix utility called Netcat. Netcat allows you send and receive data across the machines using TCP/UDP Protocols.

Netcat Tool

Its been long time since i posted on my blog, i have been very busy at the new project. I recently came across a new unix utility called Netcat. Netcat allows you send and receive data across the machines using TCP/UDP Protocols.

Sizing your Buffer Pool

In this article i will show how we leveraged DB Cache Advice Statistics in tuning our Buffer Pool. We had to size the SGA/Buffer Pool for a huge conversion activity which we had to perform, based on buffer pool stats you can make a decision on sizing(approx) your buffer pool.

Below is an example of DB_CACHE_ADVICE data

view counter