Dont Let Them Become Yours

May 27th, 2016, posted in MESSAGEs, Scarface'S DIARY, Sufism
Share

Just because someone is unkind to you that does not mean you have to be unkind to them.
Their wrongdoings are their issues to deal with.
Don’t let them become yours

Just because someone is unkind to you that does not mean you have to be unkind to them. Their wrongdoings are their issues to deal with. Don’t let them become yours,lindsay-facepalm,lindsay,facepalm

Share

Andrew Scott as Jim Moriarty in Sherlock

May 24th, 2016, posted in Sherlock Holmes
Share

Andrew Scott, Every fairy tale, Every fairy tale needs a good old fashion Villain, fairy tale, good old fashion villian, old fashion villan, Sherlock, Sherlock Holmes, sherlock holmes bbc quotes, Sherlock Holmes movie, Sherlock Holmes Quote, Sherlock Holmes tv show, villain,Andrew Scott as  Jim Moriarty in Sherlock,Andrew Scott in Sherlock,Andrew Scott as  Jim Moriarty

Share

How to check Oracle EBS/APPS Version

May 22nd, 2016, posted in Oracle Queries
Share

To check Oracle EBS/APPS Version

Run following SQL from apps user :Problem sys@standby> startup mount; ORACLE instance started. Total System Global Area 835104768 bytes Fixed Size 2217952 bytes Variable Size 490735648 bytes Database Buffers 335544320 bytes Redo Buffers 6606848 bytes Database mounted. sys@standby> alter database recover managed standby database using current logfile disconnect; alter database recover managed standby database using current logfile disconnect * ERROR at line 1: ORA-01153: an incompatible media recovery is active Cause This indicates a currently running media recovery process. Action sys@standby> alter database recover managed standby database cancel; sys@standby> alter database recover managed standby database using current logfile disconnect; Note When shutting down physical standby database, firstly turn off media recovery process. Otherwise the next time when starting up redo apply again, you will encounter error ORA-01153.

select RELEASE_NAME from fnd_product_groups; 

You should see output like :

RELEASE_NAME
-----------------------
11.5.10.2
Share

Know That When You Learn To Lose Yourself,You Will Reach The Beloved

May 19th, 2016, posted in MESSAGEs, Scarface'S DIARY, Sufism
Share

 learn to lose yourself, learn to, lose yourself,AL-ANSARI ,Zakariyya al-Ansari,Zakariyya ,al-Ansari,beloved,Know That When You Learn To Lose Yourself,You Will Reach The Beloved

Know that when you learn to lose yourself, you will reach the Beloved.
There is no other secret to be learned, and more than this is not known to me.

– Zakariyya al-Ansari –

Share

Check OS BIT is 32 or 64 For Solaris and Linux

May 15th, 2016, posted in Solaris
Share

Is my Operating System 64-bit?

In Solaris, from the command line (you don’t have to be root in most cases) run this command:
/usr/bin/isainfo -kv

If your OS is 64-bit, you will see output like:
64-bit sparcv9 kernel modules

If your OS is 32-bit, you will get this output:
32-bit sparc kernel modules

For Linux users :

If you are running Linux, you can check your distribution with the uname command:

uname -m

The output will read x86_64 for 64-bit and i686 or similar for 32-bit.

How about this Oracle install? Is it 64-bit?

The question here is weather your Oracle binaries are 64-bit. While some of the binaries associated with Oracle may be 32-bit, the important ones will be 64 bit. To check those, follow these steps from the command line:

cd $ORACLE_HOME/bin
file oracl*

This will display the file type of your oracle binaries. If you are running 64-bit binaries, the output should look like this:

oracle: ELF 64-bit MSB executable SPARCV9 Version 1, dynamically linked, not stripped
oracleO: ELF 64-bit MSB executable SPARCV9 Version 1, dynamically linked, not stripped

If your binaries are 32-bit, the output will look like this:

oracle: ELF 32-bit MSB executable SPARC Version 1, dynamically linked, not stripped

Share