How to create database manually in oracle 11g R2
step.1.go to the cat /etc/oratab and edit it. vi /etc/oratab pankaj:/u01/app/oracle/product/11.2.0/dbhome_1:N step.2.login to oracle user [oracle@servera ~]$ . oraenv ORACLE_SID = [orcl] ? pankaj The Oracle base for ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1 is /u01/app/oracle note:-. oraenv command hit for oratab and pankaj is name of the database. step.3.copy pfile cd /u01/app/oracle/product/11.2.0/dbhome_1/dbs [oracle@servera dbs]$ cp initorcl.ora initpankaj.ora step.4.edit pfile current pfile orcl.__db_cache_size=289406976 orcl.__java_pool_size=4194304 orcl.__large_pool_size=4194304 orcl.__oracle_base='/u01/app/oracle'#ORACLE_BASE set from environment orcl.__pga_aggregate_target=310378496 orcl.__sga_target=457179136 orcl.__shared_io_pool_size=0 orcl.__shared_pool_size=150994944 orcl.__streams_pool_size=0 *.audit_file_dest='/u01/app/oracle/admin/orcl/adump' *.audit_trail='db' *.compatible='11.2.0.0.0' *.con...

Comments
Post a Comment