Tuesday, July 28, 2015

Prerequisites installation BI Publisher 11.1.1.9.0

Prerequisites Operating system cerification: See the matrix certificate http://www.oracle.com/technetwork/middleware/bi/bi-11gr1certmatrix-ps6-1928219.xls Oracle-7, redhat-7, redhat-6, oracle-6, oracle-5, enterprise-5.4, enterprise-4, enterprise-5, redhat-5.4, redhat-4,redhat-5,SuSE-10,SuSE-11 Recommended operating system packages o   binutils-2.20.51.0.2 o   compat-libcap1-1.10 o   compat-libstdc++-33-3.2.3-x86_64 o   libstdc++-33-3.2.3-69.el6-x86_64 o   libgcc-4.4.4-x86_64 o   libstdc++-4.4.4-x86_64 o   libstdc++-devel-4.4.4-x86_64 o   sysstat-9.0.4 o   gcc-4.4.4 o   gcc-c++-4.4.4 o   make-3.81 o   glibc-2.12-x86_64 o   glibc-devel-2.12-x86_64 o   libaio-0.3.107-x86_64 o   libaio-devel-0.3.107-x86_64 Kernel...

error in invoking target 'ntcontab.o' of makefile

[rms@abcxyz ~]$ rpm -qa | grep gcc gcc-4.4.7-3.el6.x86_64 libgcc-4.4.7-3.el6.x86_64 libgcc-4.4.7-3.el6.i686 gcc-c++-4.4.7-3.el6.x86_64 [rms@abcxyz ~]$ yum remove gcc-4.4.7-3.el6.x86_64 [rms@abcxyz ~]$ yum remove libgcc-4.4.7-3.el6.x86_64 [rms@abcxyz ~]$ yum remove libgcc-4.4.7-3.el6.i686 [rms@abcxyz ~]$ yum remove gcc-c++-4.4.7-3.el6.x86_64 [rms@abcxyz ~]$ yum...

Thursday, July 23, 2015

How to fix error while loading shared libraries: libgcc_s.so.1: cannot open shared object file: No such file or directory

[root@vcr-broadcast2 tmp]# rpm -q libgc rpm: error while loading shared libraries: libgcc_s.so.1: cannot open shared object file: No such file or directory [root@vcr-broadcast2 tmp]# [root@vcr-broadcast2 tmp]# export LD_LIBRARY_PATH=${prefix}/lib:$LD_LIBRARY_PAT...

Wednesday, July 22, 2015

RPM to install packets for Redhat using option --nodeps

Install Packet [root@vcr-broadcast2 setup]# rpm -ivh glibc-headers-2.21.90-18.fc24.i686.rpm  error: Failed dependencies: glibc = 2.21.90-18.fc24 is needed by glibc-headers-2.21.90-18.fc24.i686 kernel-headers is needed by glibc-headers-2.21.90-18.fc24.i686 kernel-headers >= 2.2.1 is needed by glibc-headers-2.21.90-18.fc24.i686 [root@vcr-broadcast2 setup]# rpm -ivh --nodeps...

Monday, July 20, 2015

Startup and Shutdown service Enterprise Manager Cloud 12c

[oracle@PTUD ~]$ cat .bash_profile  # .bash_profile # Get the aliases and functions if [ -f ~/.bashrc ]; then . ~/.bashrc fi # User specific environment and startup programs PATH=$PATH:$HOME/bin export PATH # Oracle Settings export TMP=/tmp export ORACLE_HOSTNAME=PTUD export ORACLE_UNQNAME=ptud export ORACLE_BASE=/u01/app/oracle export ORACLE_SID=ptud export ORACLE_HOME=$ORACLE_BASE/product/12.1.0/db_1 export...

Tuesday, July 14, 2015

Example Running Data Mover PeopleSoft

PeopleSoft Financials and Supply Chain Management  (FSCM 9.2) Directory: FSCM_HOME=/home/oracle/peoplesoft/PT9.2 export $FSCM_HOME Syntax of Data Mover Scripts: Usage: psdmtx [-CT DB2|DB2ODBC|DB2UNIX|INFORMIX|MICROSFT|ORACLE|SYBASE] [-CS server name] [-CD database name] [-CO user id] [-CP user pswd] [-CI connect id] [-CW connect id pswd] [-I  process...

Scripts see Memory Static every 5 seconds

[oracle@ptud1 PT8.54]$ more tho.sh while true do free echo "-----VTG-----------" $(date) "-----------------" sleep 5 done [oracle@ptud1 PT8.54]$ sh tho.sh              total       used       free     shared    buffers     cached Mem:       8062556    7894200...

Saturday, July 11, 2015

Simply Example of grep on linux

Do you want to find content of file on directory on linux? I'd like to give you a simply command to do that. Syntax: grep -ril {content what you want to search} {path of the directory} Example: [oracle@ptud1 unix]$ grep -ril "grant select" . ./psroles.sql ./psroles.log ./connect.sql ./connect.log ./pdb/psroles2.sql ./pdb/connect.sql [oracle@ptud1 unix...