<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Biztech Blog &#187; Managed Services</title>
	<atom:link href="http://www.biztech.com/blog/category/managed-services/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.biztech.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 08 May 2013 13:52:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Don&#8217;t Be Left in the Dark &#8211; Zero downtime during hurricane Sandy</title>
		<link>http://www.biztech.com/blog/2012/11/dont-be-left-in-the-dark/</link>
		<comments>http://www.biztech.com/blog/2012/11/dont-be-left-in-the-dark/#comments</comments>
		<pubDate>Thu, 01 Nov 2012 19:13:33 +0000</pubDate>
		<dc:creator>Kyle Snyder</dc:creator>
				<category><![CDATA[Managed Services]]></category>

		<guid isPermaLink="false">http://www.biztech.com/blog/?p=1321</guid>
		<description><![CDATA[Not even the largest "super storm" in the history of the East Coast can leave BizTech's hosting customers in the dark. ]]></description>
			<content:encoded><![CDATA[<p>BizTech is proud to report that despite prolonged power outages throughout the region due to severe storm damage and flooding from hurricane sandy, our Managed Services clients experienced zero downtime.</p>
<p>As hurricane Sandy approached the East Coast, BizTech took every possible measure to protect our data center and network infrastructure for extreme conditions. We prepared our Managed Services team in advance, and continued to provide round the clock services to our clients.</p>
<p>BizTech has over 500 customers throughout the East Coast.  We offer Managed Services, hosting and cloud options which provide comprehensive administration and support of the most critical Oracle Applications and Database systems. Our clients choose from day to day ad hoc services or complete system management in our state of the art hosting facility which is SSAE 16 SOC 1 Type 2 Compliant. Our solutions are scalable to fit organizations of any size.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.biztech.com/blog/2012/11/dont-be-left-in-the-dark/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to rename an Oracle Database</title>
		<link>http://www.biztech.com/blog/2012/05/how-to-rename-an-oracle-database/</link>
		<comments>http://www.biztech.com/blog/2012/05/how-to-rename-an-oracle-database/#comments</comments>
		<pubDate>Mon, 28 May 2012 20:07:49 +0000</pubDate>
		<dc:creator>Raj Ravikumar</dc:creator>
				<category><![CDATA[Managed Services]]></category>

		<guid isPermaLink="false">http://www.biztech.com/blog/?p=891</guid>
		<description><![CDATA[Oracle database’s ORACLE_SID can be renamed using a couple of methods. The first method, which is a tradition method, is to create a new control file using the reuse database flag and give it a new incarnation. Once this is done we can change the values in the external files (sqlnet.ora, tnsnames.ora, init.ora (spfile)) and open the database. From Oracle 9i and beyond Oracle database can be renamed using the dbnewid (or) nid utility. In this post, we will go through the steps to rename the database using the nid utility.]]></description>
			<content:encoded><![CDATA[<p>Oracle database’s ORACLE_SID can be renamed using a couple of methods. The first method, which is a tradition method, is to create a new control file using the reuse database flag and give it a new incarnation. Once this is done we can change the values in the external files (sqlnet.ora, tnsnames.ora, init.ora (spfile)) and open the database. From Oracle 9i and beyond Oracle database can be renamed using the <em>dbnewid (or) nid</em> utility. In this post, we will go through the steps to rename the database using the nid utility.</p>
<ul>
<li>Backup the database (Always a good practice before any changes are made).</li>
<li>Start the database in mount state (do not open it).</li>
<li>Invoke the dbnewid utility</li>
</ul>
<p><em><strong><em>nid TARGET=sys/password@&lt;CURRENT_ORACLE_SID&gt; DBNAME=&lt;NEW_ORACLE_SID&gt;</em></strong></em></p>
<ul>
<li>If the input parameters to the nid command are correct, the utility would ask for a confirmation to change the database name.</li>
</ul>
<p><em><strong><em>Change database ID and database name &lt;CURRENT_ORACLE_SID&gt; to &lt;NEW_ORACLE_SID&gt;? (Y/[N]) =&gt;</em></strong></em></p>
<ul>
<li>Once you confirm the operation it will modify the database name in all the control files, change the dbid in the datafiles and control files and show you the new DBID.</li>
<li>After this operation is successful, shutdown the database.</li>
</ul>
<p><strong><em>Shutdown </em><em>Immediate</em></strong></p>
<ul>
<li>Startup the database in mount state to rename the DB_NAME parameter in the parameter file.</li>
</ul>
<p><em><strong><em>Startup mount<br />
Alter System Set DB_NAM=&lt;NEW_ORACLE_SID&gt; Scope=SPFILE;<br />
Shutdown Immediate </em></strong></em></p>
<ul>
<li>Create a new password file using orapwd command</li>
</ul>
<p><em><strong><em>orapwd file=/u32/oracle/product/DB/1120/dbs/pwd&lt;NEW_ORACLE_SID&gt;.ora password=password entries=10</em></strong></em></p>
<ul>
<li>Rename the spfile to match the new DB NAME</li>
<li>Export the new ORACLE_SID (or modify it in the .bash_profile)</li>
<li>Modify the tnsnames.ora and listener.ora to reflect the new ORACLE_SID and reload the listener.</li>
<li>Open the database with resetlogs options( Note: all prior backups are rendered useless at this point as the database is opened in resetlog mode)</li>
</ul>
<p><strong><em><em>Startup mount<br />
</em><em>Alter database open resetlogs;</em></em></strong></p>
<ul>
<li>Shutdown and take a good backup of the database.</li>
</ul>
<p>Note: If you are using RMAN to perform backups, unregister the old database before performing this step and re-register it once the process is complete.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.biztech.com/blog/2012/05/how-to-rename-an-oracle-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hyperion Business Rules (HBR) is de-supported in EPM 11.1.2.2</title>
		<link>http://www.biztech.com/blog/2012/05/hyperion-business-rules-hbr-is-de-supported-in-epm-11-1-2-2/</link>
		<comments>http://www.biztech.com/blog/2012/05/hyperion-business-rules-hbr-is-de-supported-in-epm-11-1-2-2/#comments</comments>
		<pubDate>Thu, 17 May 2012 23:28:02 +0000</pubDate>
		<dc:creator>Raj Ravikumar</dc:creator>
				<category><![CDATA[Managed Services]]></category>

		<guid isPermaLink="false">http://www.biztech.com/blog/?p=839</guid>
		<description><![CDATA[Oracle has de-supported Hyperion Business Rules (HBR) in the 11.1.2.2 release. Customers with HBR in the previous releases need to migrate them to Calc Manager in 11.1.2.2]]></description>
			<content:encoded><![CDATA[<p>Oracle has de-supported Hyperion Business Rules (HBR) in the 11.1.2.2 release. Customers with HBR in the previous releases need to migrate them to Calc Manager in 11.1.2.2. Support Doc (MetaLink Doc) ID 1448421.1 &#8211;  Hyperion Business Rules Statement of Direction &#8211; has an attachment that provides an overview of the changes in availability of Hyperion Business Rules. This document would help you assess any impact to your current implementation, and to plan future decisions related to integration with the Oracle&#8217;s Hyperion suite of products. The steps for migrating from Business Rules to Calc Manager depends on your specific installation type and can be found in &#8211; http://docs.oracle.com/cd/E17236_01/epm.1112/epm_install_1112200.pdf ( Page 22,23)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.biztech.com/blog/2012/05/hyperion-business-rules-hbr-is-de-supported-in-epm-11-1-2-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resetting Lost Oracle WebLogic Password for Fusion Middleware Applications</title>
		<link>http://www.biztech.com/blog/2012/05/resetting-lost-oracle-weblogic-password-for-fusion-middleware-applications/</link>
		<comments>http://www.biztech.com/blog/2012/05/resetting-lost-oracle-weblogic-password-for-fusion-middleware-applications/#comments</comments>
		<pubDate>Thu, 10 May 2012 15:51:59 +0000</pubDate>
		<dc:creator>Raj Ravikumar</dc:creator>
				<category><![CDATA[Managed Services]]></category>
		<category><![CDATA[Oracle Application Services]]></category>
		<category><![CDATA[Oracle Business Intelligence]]></category>

		<guid isPermaLink="false">http://www.biztech.com/blog/?p=819</guid>
		<description><![CDATA[When Fusion Middleware Applications are installed there is a default user (weblogic or a specific name that you provide) that is created during the domain creation which acts as a super user for all Middleware Applications. This post walks through the process of resetting the weblogic password in an event that it’s lost. ]]></description>
			<content:encoded><![CDATA[<p>When Fusion Middleware Applications are installed there is a default user (weblogic or a specific name that you provide) that is created during the domain creation which acts as a super user for all Middleware Applications. This post walks through the process of resetting the weblogic password in an event that it’s lost.</p>
<ol>
<li>Shutdown Weblogic Server and all associated applications.</li>
<li>Set the Weblogic Server environment variables –<br />
<span style="font-style: italic;font-weight: bold"> $DOAMIN_HOME/bin/setDomainEnv.sh</span></li>
<li>Navigate to $DOMAIN_HOME/security and rename the <strong><em>DefaultAuthenticatorInit.ldift </em></strong>file.</li>
<li>Create an initialization file in the same directory  using the below command –<br />
<span style="font-style: italic;font-weight: bold"> java weblogic.security.utils.AdminAccount &lt;weblogic_user_name&gt; &lt;weblogic_password&gt; .</span></li>
<li>This will create a new <strong><em>DefaultAuthenticatorInit.ldift </em></strong>file.</li>
<li>Navigate to $DOMAIN_HOME/servers/AdminServer and rename the <strong><em>data</em></strong> directory.</li>
<li>Repeat step 6 for all the managed servers which are part of the domain.</li>
<li>If boot.properties is used, recreate them with the username and password that was provided in Step 4.</li>
<li>Start Admin Server and make sure you can login using the new credentials.</li>
<li>Start the rest of the services</li>
</ol>
<p>Note: This process will remove all the user accounts in the weblogic domain and only the new user that is created will be present and act as a super user.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.biztech.com/blog/2012/05/resetting-lost-oracle-weblogic-password-for-fusion-middleware-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle EBS ATG Seed Data Comparison Report</title>
		<link>http://www.biztech.com/blog/2011/06/oracle-ebs-atg-seed-data-comparison-report/</link>
		<comments>http://www.biztech.com/blog/2011/06/oracle-ebs-atg-seed-data-comparison-report/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 19:49:17 +0000</pubDate>
		<dc:creator>biztech_admin</dc:creator>
				<category><![CDATA[E-Business Suite]]></category>
		<category><![CDATA[Managed Services]]></category>
		<category><![CDATA[Oracle Application Services]]></category>
		<category><![CDATA[Oracle EBS R12]]></category>

		<guid isPermaLink="false">http://www.biztech.com/blog/?p=390</guid>
		<description><![CDATA[Oracle finally released a reporting tool that reports on the differences in E-Business Suite database objects between one release and another.  That's a very useful reference to Tech users to understand EBS dictionary at a module level, but EBS defaults are delivered as seed data within the database objects themselves. What about the differences in this seed data between one release and another?

]]></description>
			<content:encoded><![CDATA[<p>Oracle finally released a reporting tool that reports on the differences in E-Business Suite database objects between one release and another.  That&#8217;s a very useful reference to Tech users to understand EBS dictionary at a module level, but EBS defaults are delivered as <em>seed data</em> within the database objects themselves. What about the differences in this seed data between one release and another?</p>
<p>Oracle announces the availability of a new tool that provides comparison reports of E-Business Suite seed data between EBS 11.5.10.2, 12.0.4, 12.0.6, 12.1.1, and 12.1.3.  This new tool complements the information in the data model comparison tool.</p>
<p>The EBS ATG Seed Data Comparison Report shows EBS ATG Seed data Entity changes between two EBS Releases. This report can assist advanced users with reviewing changes prior to an upgrade.</p>
<p>This comparison report is available for the following combinations of EBS releases:</p>
<p>11.5.10.2( with 11i.AD.I.4 &amp; 11i.ATG_PF.H.Delta.4) vs. 12.1.3</p>
<p>12.0.4 vs. 12.1.3</p>
<p>12.0.6 vs. 12.1.3</p>
<p>12.1.1 vs. 12.1.3</p>
<p><strong>Installing EBS ATG Seed Data Comparison Report</strong></p>
<p>Download “EBS_ATG_Seed_Data_Comparison_Report.zip”</p>
<p>Unzip and extract the EBS_ATG_Seed_Data_Comparison_Report.zip<br />
The folder &#8220;EBS_ATG_Seed_Data_Comparison_Report&#8221; will be created after unzipping the file<br />
Open/Navigate to the folder &#8216;EBS_ATG_Seed_Data_Comparison_Report&#8217;<br />
Open file &#8216;EBS_ATG_Seed_Data_Comparison_Report.html&#8217; in browser.<br />
Do not rename the sub-folder &#8216;Data&#8217; and its content (else it will break the report)</p>
<p><strong>How to View this Report</strong></p>
<p>The Report is divided into multiple re-sizable frames:</p>
<p>Top Horizontal frame &#8211; Allows Selection of a Product Family.</p>
<p>Left Vertical frame &#8211; Is for &#8216;<strong>Summary Statistics of Differences</strong>&#8216; for the selected Product Family Shortnames</p>
<p>Right Vertical frame &#8211; Shows the &#8216;<strong>Detail Statistics of Differences</strong>&#8216; based on the Product Shortname selected.</p>
<p>Top Right Horizontal frame &#8211; Shows the navigation path (breadcrumbs) based upon your selections in a special frame, which can also be used to navigate back to previous selections (instead of using the Browser back button).<br />
<strong>Sample Report</strong></p>
<p><strong> </strong></p>
<p><img class="alignnone size-full wp-image-394" title="SampleReport" src="http://www.biztech.com/blog/wp-content/uploads/Syed2.jpg" alt="" width="442" height="254" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.biztech.com/blog/2011/06/oracle-ebs-atg-seed-data-comparison-report/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Disaster Recovery and Business Continuity</title>
		<link>http://www.biztech.com/blog/2011/03/disaster-recovery-and-business-continuity/</link>
		<comments>http://www.biztech.com/blog/2011/03/disaster-recovery-and-business-continuity/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 22:01:24 +0000</pubDate>
		<dc:creator>biztech_admin</dc:creator>
				<category><![CDATA[Managed Services]]></category>

		<guid isPermaLink="false">http://www.biztech.com/blog/?p=100</guid>
		<description><![CDATA[Disaster Recovery (DR) is the process an organization uses to recover access to their data, software,  hardware that are needed to resume business critical applications after the event of either a natural disaster or planned caused by humans. When a disaster occurs, the Disaster Recovery plan’s aim is to restore an acceptable level of operations [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Disaster Recovery (DR)</strong> is the process an organization uses to recover access to their data, software,  hardware that are needed to resume business critical applications after the event of either a natural disaster or planned caused by humans. When a disaster occurs, the Disaster Recovery plan’s aim is to restore an acceptable level of operations with an acceptable recovery time objects. The overall goal of a Disaster Recovery plan is to minimize downtime in the event a disaster occurs.</p>
<p>Disaster Recovery Plans are generally part of a larger, more extensive practice known as Business Continuity Planning. DR plans should be well practiced so that the Business owners are familiar with the specific actions they will need to take should a disaster occur. DR plans must also be adaptable and routinely updated. Apart from the business critical applications availability, The most important component is human capital which is often overlooked by most corporations. Companies tend to assume that their staff will always be available. When a disaster occurs, sickness, disability of a key employee, or even a death, can have a devastating effect on a business. Business needs and the threats to business are constantly changing. New Customers, and software applications as well as changes to Infrastructure components affect Disaster Recovery plan. It is a good practice to update Disaster Recover Plans anytime a significant change is made to critical business process or the IT infrastructure that supports them. At a minimum, its recommended to test and update disaster Recovery plans on an annual basis.</p>
<p>Disaster Recovery Plan – 101</p>
<ul>
<li>Establish Recovery Time Objectives (RTO’s) and the necessary Infrastructure to achieve them.</li>
<li>Define Disaster Recover Roles and Responsibilities</li>
<li>Have a Disaster Recovery Communication Plan that details procedure for the activation of the Recovery team.</li>
<li>Have Detailed Disaster Recover Procedures</li>
<li>Validation of technical and personnel readiness</li>
<li>Define Recovery Time Objectives and Recovery Point Objectives</li>
<li>Testing and verification of technical recovery capabilities at least twice a year, and a team preparedness exercises at least annually.</li>
<li>A comprehensive plan for providing end users access to systems, irrespective of how  networks and hardware may be impacted by Disaster.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.biztech.com/blog/2011/03/disaster-recovery-and-business-continuity/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
