Get a Free iPhone 4 from Xpango - click here

Wednesday, October 13, 2010

Oracle Enterprise Content Management Suite 11g

Oracle Enterprise Content Management Suite 11g,a comprehensive,integrated, and high-performance content management solution,is now available to help organizations increase efficiency,reduce costs and improve content security.

A component of Oracle Fusion Middleware,Oracle Enterprise Content Management suite 11g consists of Oracle Universal Records Management 11g,Oracle Imaging and Process Management 11g,and Oracle Information Rights Management 11g.

The new suite is built on a unified content repository and provides an easy-to-use,end-to-end solution spanning imaging,Web,document,and records management.It builds on Oracle's solution for enterprise application documents through preintegration with business process,business applications,and desktop productivity tools.Its unified repository can support high-volume content ingestion applications,such as invoice processing,and high-volume content delivery applications,such as e-commerce sites.

To maximize content management efficiency,reduce costs,and improve security,organizations need a comprehensive enterprise content management solution that is integrated into bussiness process and fits with the way work.With Oracle Enterprise Content Management Suite 11g,we meet those demands while delivering the performance and scalibility needed to support the most-complex and demanding enterprise content management environments.

New enhancements deliver unparalleled ease-of-use and help put content management where people work by providing:
Next-generation desktop integration – to increase efficiency through access to workflow information and saved searches via Microsoft Windows Explorer, as well as offering the ability to edit managed content, compare managed documents and insert managed links directly from Microsoft Office.
Open Web content management – a revolutionary approach to integrating Web content authoring, design and presentation capabilities into a broad range of Web sites; portals, including Oracle WebLogic Portal; and Web applications. Among the new features are:
Servlets and tag libraries for content management services enable Web developers to add Web content management to new and existing JavaServer Pages (JSP), JavaServer Faces (JSF) and Oracle Application Development Framework (ADF) Faces applications
A plug-in which adds an array of Web content management palettes into Oracle’s leading Integrated Development Environment, Oracle JDeveloper
Simplified design mode for business users which makes it easier for them to edit and manage their sites.
Oracle Universal Records Management 11g is a scalable DoD 5015.2 v3 certified electronic and physical records management system. Key new enhancements support business demands by:
Improving discovery – to provide access to content from anywhere in the enterprise and enable instant holds, dispositions and discovery of content from across systems and applications
Enhancing usability – to improve insight for business users through an updated physical records management interface, a records management dashboard and more flexible and complete reporting
Delivering real-time discovery and support for third-party archiving - Oracle Universal Records Management 11g is an enterprise-ready solution with real-time discovery capabilities and support for third-party archiving and information management vendors.

Friday, October 8, 2010

Oracle 11g Release 2 installation on linux screenshots


Provide email id if you wish to receive support from Oracle.


Select the operation you want to perform.




Enter the details below with admin password.







Oracle 11g Release 2 Installation on Linux


Installation of Oracle 11g Release 2 on Linux.

Supported Operating Systems

on 32-bit Linux:

Asianux 2 Update 7 (Kernel 2.6.9 or later)
Asianux 3 (Kernel 2.6.18 or later)
Oracle Enterprise Linux 4 Update 7 (Kernel 2.6.9 or later)
Oracle Enterprise Linux 5 Update 2 (Kernel 2.6.18 or later)
Red Hat Enterprise Linux 4 Update 7 (Kernel 2.6.9 or later)
Red Hat Enterprise Linux 5 Update 2 (Kernel 2.6.18 or later)
SUSE Linux Enterprise Server 10 SP2 (Kernel 2.6.16.21 or later)
SUSE Linux Enterprise Server 11 (2.6.27.19 or later)

Oracle Database 11g Release 2 is not certified on fedora 13.I will show you the workaround to install on Fedora 13.

Set Kernel Parameters.
Edit /etc/sysctl.conf file to add these kernel parameters.The file should reflect this value

fs.aio-max-nr = 1048576
fs.file-max = 6815744
kernel.shmall = 2097152
kernel.shmmax = 536870912
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
net.ipv4.ip_local_port_range = 9000 65500
net.core.rmem_default=262144
net.core.rmem_max=4194304
net.core.wmem_default=262144
net.core.wmem_max=104858

Execute the following command to update the parameters

# /sbin/sysctl -p

Add the following lines to the /etc/security/limits.conf file:

oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
Add the following line to the /etc/pam.d/login file, if it does not already exist:
session required pam_limits.so

Disable secure linux by editing the /etc/selinux/config file, making sure the SELINUX flag is set as follows:

SELINUX=disabled

For Fedora 13
Edit /etc/redhat-release file as follows:

redhat release 5


Some additional packages are required for succesful installation of Oracle software. To check whether required packages are installed on your operating system use following command:

rpm -q binutils elfutils elfutils-libelf gcc gcc-c++ glibc glibc-common glibc-devel compat-libstdc++-33 cpp make compat-db sysstat libaio libaio-devel unixODBC unixODBC-devel| ksh sysstat make
Create new groups and users:

groupadd oinstall
groupadd dba
groupadd oper
groupadd asmadmin

useradd -g oinstall -G dba,oper,asmadmin oracle
passwd oracle

Create Directories in which Oracle software will be installed:

mkdir -p /u01/app/oracle/product/11.2.0/db_1
chown -R oracle:oinstall /u01
chmod -R 755 /u01


Login as oracle user and add the following lines at the end of .bash_profile file

# Oracle Settings
ORACLE_HOSTNAME=localhost; export ORACLE_HOSTNAME
ORACLE_UNQNAME=DB11G; export ORACLE_UNQNAME
ORACLE_BASE=/u01/app/oracle; export ORACLE_BASE
ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1; export ORACLE_HOME
ORACLE_SID=orcl; export ORACLE_SID
ORACLE_TERM=xterm; export ORACLE_TERM
PATH=/usr/sbin:$PATH; export PATH
PATH=$ORACLE_HOME/bin:$PATH; export PATH

LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; export LD_LIBRARY_PATH
CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib; export CLASSPATH

if [ $USER = "oracle" ]; then
  if [ $SHELL = "/bin/ksh" ]; then
    ulimit -p 16384
    ulimit -n 65536
  else
    ulimit -u 16384 -n 65536
  fi
fi


Login as root and enter the following command:
xhost +

Download Oracle Database 11g R2 from Oracle and place the two file into the same directory:
unzip linux_11gR2_database_1of2.zip
unzip linux_11gR2_database_2of2.zip
You should now have a single directory called database.

Run the Oracle Universal Installer
cd database
./runInstaller


In Fedora 13 ,you will get link error:
Error invoking target 'agent nmhs' of make file

To fix it:
Edit $ORACLE_HOME/sysman/lib/ins_emagent.mk,
Search for the line $(MK_EMAGENT_NMECTL) and replace the line with $(MK_EMAGENT_NMECTL) -lnnz11
Make sure Installer is open.Once file is saved click retry.