Martha Cathy's Videos (OracleConnections) - OracleConnections 2024-04-20T04:25:00Z http://www.oracleconnections.com/video/video/listForContributor?screenName=20gr4y64qogmq&rss=yes&xn_auth=no Secure Oracle EBS Data with Unitask Security Director tag:www.oracleconnections.com,2013-09-13:6612035:Video:35956 2013-09-13T11:36:56.454Z Martha Cathy http://www.oracleconnections.com/profile/MarthaCathy <a href="http://www.oracleconnections.com/video/secure-oracle-ebs-data-with-unitask-security-director"><br /> <img src="http://storage.ning.com/topology/rest/1.0/file/get/334184563?profile=original&amp;width=240&amp;height=135" width="240" height="135" alt="Thumbnail" /><br /> </a><br />Automate data scrambling and security in Oracle EBS non-production databases using Unitask Security Director. <a href="http://www.oracleconnections.com/video/secure-oracle-ebs-data-with-unitask-security-director"><br /> <img src="http://storage.ning.com/topology/rest/1.0/file/get/334184563?profile=original&amp;width=240&amp;height=135" width="240" height="135" alt="Thumbnail" /><br /> </a><br />Automate data scrambling and security in Oracle EBS non-production databases using Unitask Security Director. Oracle Standby database with Oracle 11G Standard Edittion tag:www.oracleconnections.com,2013-08-29:6612035:Video:32283 2013-08-29T12:06:13.294Z Martha Cathy http://www.oracleconnections.com/profile/MarthaCathy <a href="http://www.oracleconnections.com/video/oracle-standby-database-with-oracle-11g-standard-edittion"><br /> <img alt="Thumbnail" height="192" src="http://storage.ning.com/topology/rest/1.0/file/get/334180580?profile=original&amp;width=240&amp;height=192" width="240"></img><br /> </a> <br></br>STEP I- Createing password file for auxiliary server.<br></br> Just copy target orapwd file to standby server $ORACLE_HOME/dbs/orapwATLASDEVSB.<br></br> STEP II- Configuring network files (listener.ora and tnsnames.ora) to create connectivity between two servers.<br></br> Standby database listener<br></br> SID_LIST_LISTENER =<br></br> (SID_LIST =<br></br> (SID_DESC… <a href="http://www.oracleconnections.com/video/oracle-standby-database-with-oracle-11g-standard-edittion"><br /> <img src="http://storage.ning.com/topology/rest/1.0/file/get/334180580?profile=original&amp;width=240&amp;height=192" width="240" height="192" alt="Thumbnail" /><br /> </a><br />STEP I- Createing password file for auxiliary server.<br /> Just copy target orapwd file to standby server $ORACLE_HOME/dbs/orapwATLASDEVSB.<br /> STEP II- Configuring network files (listener.ora and tnsnames.ora) to create connectivity between two servers.<br /> Standby database listener<br /> SID_LIST_LISTENER =<br /> (SID_LIST =<br /> (SID_DESC =<br /> (GLOBAL_DBNAME = ATLASDEV)<br /> (ORACLE_HOME = /opt/db/oracle/home/o10oracle/app/oracle/product/11.2.0.2/db_1)<br /> (SID_NAME = ATLASDEVSB)<br /> )<br /> )<br /> <br /> LISTENER =<br /> (DESCRIPTION_LIST =<br /> (DESCRIPTION =<br /> (ADDRESS = (PROTOCOL = TCP)(HOST = oratest)(PORT = 1549))<br /> )<br /> (DESCRIPTION =<br /> (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1549))<br /> )<br /> )<br /> <br /> <br /> <br /> STANDBY DATABASE TNSNAMES.ORA<br /> # tnsnames.ora Network Configuration File: /opt/db/oracle/home/o10oracle/app/oracle/product/11.2.0.2/db_1/network/admin/tnsnames.ora<br /> # Generated by Oracle configuration tools.<br /> <br /> ATLASDEV =<br /> (DESCRIPTION =<br /> (ADDRESS_LIST =<br /> (ADDRESS = (PROTOCOL = TCP)(HOST = oradev)(PORT = 1525))<br /> )<br /> (CONNECT_DATA =<br /> (SERVICE_NAME = ATLASDEV)<br /> )<br /> )<br /> TARGET DATABASE TNSNAMES.ORA<br /> ATLASDEVSB =<br /> (DESCRIPTION =<br /> (ADDRESS = (PROTOCOL = TCP)(HOST = oratest)(PORT = 1549))<br /> (CONNECT_DATA =<br /> (SERVER = DEDICATED)<br /> (SERVICE_NAME = ATLASDEV)<br /> )<br /> )<br /> <br /> STEP III- Creating parameter file for standby instance<br /> *.audit_file_dest='/opt/db/oracle/admin/ATLASDEV/adump'<br /> *.audit_trail='DB'<br /> *.compatible='11.2.0.0.0'<br /> *.control_files='/opt/db/oracle/vol1/ATLASDEV/controlfile/o1_mf_6zn59m4c_.ctl','/opt/db/oracle/vol2/ATLASDEV/controlfile/o1_mf_6zn59m6l_.ctl'<br /> *.db_block_size=8192<br /> *.db_create_file_dest='/opt/db/oracle/vol1/'<br /> *.db_name='ATLASDEV'<br /> *.db_recovery_file_dest='/opt/db/oracle/vol3/fast_recovery_area/'<br /> *.db_recovery_file_dest_size=10G<br /> *.memory_target=1073741824<br /> <br /> STEP IV- Creating necessary directories for the standby database files.<br /> Create adump dpdump pfile directories under /opt/db/oracle/admin/ATLASDEV/adump'<br /> Create controlfile datafile onlinelog directories under /opt/db/oracle/vol1/ATLASDEV/.<br /> STEP V- Taking backup of primary database and copy it to the auxiliary server.<br /> Rman&gt;backup current controlfile for standby format ‘/fullpath/standby_control_%U’;<br /> Rman&gt; backup database plus archivelog;<br /> Rman&gt; backup archivelog all;<br /> Sqlplus &gt; select max(sequence#) from v$archived_log;<br /> STEP VI- Startup the auxiliary instance in NOMOUNT mode.<br /> Sqlplus / as sysdba<br /> Sqlplus &gt; Create spfile from pfile=’/fullpath/initATLASDEVSB.ORA’ .<br /> SQLPLUS&gt; STARTUP NOMOUNT;<br /> STEP VII- Running DUPLICATE DATABASE command in the primary database.<br /> Rman target sys/password@atlasdev auxiliary /<br /> Run{<br /> Set until sequence (max seq#);<br /> Duplicate target database for standby dorecover nofilenamecheck;<br /> }<br /> STEP VIII- After successful recovery do following.<br /> Sqlplus / as sysdba<br /> Recover standby database;<br /> AUTO.<br /> ALTER DATABASE OPEN READ ONLY;<br /> If datafile is added on primary database it can be recover using following commands.<br /> • On the standby database, set STANDBY_FILE_MANAGEMENT to AUTO and restart Redo Apply:<br /> SQL&gt; ALTER SYSTEM SET STANDBY_FILE_MANAGEMENT=AUTO;<br /> SQL&gt; RECOVER MANAGED STANDBY DATABASE DISCONNECT;<br /> Ref: <a href="http://docs.oracle.com/cd/B28359_01/server.111/b28294/manage_ps.htm">http://docs.oracle.com/cd/B28359_01/server.111/b28294/manage_ps.htm</a> How To Use Oracle JDeveloper To Create Database Connections tag:www.oracleconnections.com,2013-08-29:6612035:Video:32048 2013-08-29T12:05:37.104Z Martha Cathy http://www.oracleconnections.com/profile/MarthaCathy <a href="http://www.oracleconnections.com/video/how-to-use-oracle-jdeveloper-to-create-database-connections"><br /> <img alt="Thumbnail" height="180" src="http://storage.ning.com/topology/rest/1.0/file/get/334181153?profile=original&amp;width=240&amp;height=180" width="240"></img><br /> </a> <br></br>This tutorial will show you how to create a connection to a database using Oracle JDeveloper. You will learn all the basic steps to establish and view your SQL worksheet and perform all necessary functions. You can watch our collection of Java tutorials here:… <a href="http://www.oracleconnections.com/video/how-to-use-oracle-jdeveloper-to-create-database-connections"><br /> <img src="http://storage.ning.com/topology/rest/1.0/file/get/334181153?profile=original&amp;width=240&amp;height=180" width="240" height="180" alt="Thumbnail" /><br /> </a><br />This tutorial will show you how to create a connection to a database using Oracle JDeveloper. You will learn all the basic steps to establish and view your SQL worksheet and perform all necessary functions. You can watch our collection of Java tutorials here: <a href="http://www.fireboxtraining.com/java">http://www.fireboxtraining.com/java</a>