<?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>Mike Swing&#039;s Oracle Blog</title>
	<atom:link href="http://trutek.com/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://trutek.com/wordpress</link>
	<description>R12.1 EBS, 11g Database, Upgrades, Performance Tuning, Demantra</description>
	<lastBuildDate>Thu, 19 Apr 2012 00:49:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>The British are Coming &#8211; not really, but Jonathan Lewis is</title>
		<link>http://trutek.com/wordpress//the-british-are-coming-not-really-but-jonathan-lewis-is/</link>
		<comments>http://trutek.com/wordpress//the-british-are-coming-not-really-but-jonathan-lewis-is/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 23:58:46 +0000</pubDate>
		<dc:creator>mswing</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://trutek.com/wordpress/?p=468</guid>
		<description><![CDATA[]Jonathan Lewis, considered by me, to be the world&#8217;s leading Oracle Performance expert, will conduct his brand new one-day &#8220;Beating the Oracle Optimizer&#8220; seminar at TruTek on Friday May 18, 2012.  Click here to view seminar agenda.  What: &#8220;Beating the Oracle Optimizer&#8221; &#8230; <a href="http://trutek.com/wordpress/\"/the-british-are-coming-not-really-but-jonathan-lewis-is/\"">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>]Jonathan Lewis, considered by me, to be the world&#8217;s leading Oracle Performance expert, will conduct his brand new one-day <strong>&#8220;</strong><strong>Beating the Oracle Optimizer</strong><strong>&#8220;</strong> seminar at TruTek on Friday May 18, 2012.</p>
<div> Click <a href="http://library.constantcontact.com/doc201/1102170980254/doc/Bee0b0R9eFUV1mUi.pdf" rel="nofollow" shape="rect" target="_blank">here</a> to view seminar agenda.</div>
<p> <strong>What: &#8220;Beating the Oracle Optimizer&#8221; by Jonathan Lewis</strong></p>
<p><strong>When: Friday May 18, 2012</strong></p>
<p><strong>Where: TruTek | 1740 S Main Street | SLC, UT</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://trutek.com/wordpress//the-british-are-coming-not-really-but-jonathan-lewis-is//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RMOUG &#8211; Graham Wood 25+ years at Oracle</title>
		<link>http://trutek.com/wordpress//rmoug-graham-wood-25-years-at-oracle/</link>
		<comments>http://trutek.com/wordpress//rmoug-graham-wood-25-years-at-oracle/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 00:09:03 +0000</pubDate>
		<dc:creator>mswing</dc:creator>
				<category><![CDATA[11g Database]]></category>
		<category><![CDATA[Oracle User Groups]]></category>

		<guid isPermaLink="false">http://trutek.com/wordpress/?p=453</guid>
		<description><![CDATA[Graham&#8217;s presentation on the &#8220;Hidden&#8221; Features of the Oracle Database: Since, these presentations aren&#8217;t generally published, I took notes, not guaranteed to be correct. Graham Wood Hidden Features Free Features dbms_monitor.session_trace_enable  10g plan_stat   11g argument added to dbms_monitor.session_trace_enable  dump plan &#8230; <a href="http://trutek.com/wordpress/\"/rmoug-graham-wood-25-years-at-oracle/\"">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Graham&#8217;s presentation on the &#8220;Hidden&#8221; Features of the Oracle Database:</p>
<p>Since, these presentations aren&#8217;t generally published, I took notes, not guaranteed to be correct.</p>
<p>Graham Wood Hidden Features</p>
<p>Free Features</p>
<p>dbms_monitor.session_trace_enable  10g</p>
<p>plan_stat   11g argument added to dbms_monitor.session_trace_enable </p>
<p>dump plan when cursor is closed</p>
<p>now, after the first execution, never, all_executions, they dump row source statistics</p>
<p>cursor mapping broken 11gr1, statement text printed on every execute</p>
<p>long cursor numbers 11gR2, not so human readable</p>
<p>TKPROF enhancements</p>
<p>                Prints sql ID and plan hash for each statement</p>
<p>                Reports First, Avg, Max from multiple row source dunmps</p>
<p>                But not CLOSE … DOH!</p>
<p>Enable trace foe individual statements</p>
<p>                Alter session set events ‘sql_trace [sql:…]</p>
<p>Getting sql info V$SQLstat (10g), doesn’t use any latches</p>
<p>                Using V$SQL can make latch problems worse</p>
<p>DBMS_XPLAN.DISPLAY_CURSOR,</p>
<p>EXPLAIN_PLAN doesn’t work correctly, so use DBMS_XPLAN</p>
<p>Select * from table (dbms_xplan.display_cursor (“atnoianf82398nhfa’, NULL, ‘ADVANCED’));</p>
<p>Select * from table (dbms_xplan.display_cursor (format=&gt;’ALLSTATS LAST’))</p>
<p>Use the CARDINALITY HINT to check the actual plan</p>
<p>Select /*+ gather_plan_statistics +/</p>
<p>Set a parameter for running an individual statement</p>
<p>SELECT /* + OPT_PARAM(‘star_transformation’….</p>
<p>_optimizer_ignore_hints=TRUE, useful for testing</p>
<p>Optimizer Statistics</p>
<p>Pending Statistics</p>
<p>                Separates stats collection from stats publishing</p>
<p>                Capture stats as pending</p>
<p>                Test using pending stats</p>
<p>                Publish once verified</p>
<p>Controlled by parameter – optimizer_use_pending_statistics</p>
<p>                Determines if the optimizer will use pending stats</p>
<p>Set to FALSE by default in 11g</p>
<p>                Use dbms_stats.set_*_stats</p>
<p>                Very useful for min max values</p>
<p>Setting Statistics</p>
<p>Dbms_stats.datearray(to_date(‘01/01/1999’, ‘MM/DD/YYYY)’, sysdate)</p>
<p>Dbms_stats.set_column_stats(‘scott’,’emp’,’hiredate’,srec=&gt;sr);</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Gather incremental stats in 11g uses “synopsis”. Make sure to clear all the stats and use one pass to create the “SYNOPSIS”.</p>
<p>LISTAGG – Analytic Query</p>
<p>First_value, nth value, last value</p>
<p>External Tables</p>
<p>External Table Preprocessor</p>
<p>Stop use SQL Loader – user External tables  - parallel loads with a degree of parallelism</p>
<p>                The use of a “preprocessor” allows for uncompressing zip files</p>
<p>                External tables allow us to filter the data before loading the data.</p>
<p>&nbsp;</p>
<p>Sqlplus –prelim / as sysdba   gives access to in memory structures with no SQL access, no latches or SQL allowed.</p>
<p>Aren’t Free</p>
<p>AWR captures top 5</p>
<p>dbms_workload_repository.modify_snapshot_settings (topsql=&gt;200)</p>
<p>dbms_workload_repository.add_colored_sql(‘sql_id’) to capture marked SQL, this marks the SQL</p>
<p>&nbsp;</p>
<p>Reporting</p>
<p>AWR SQL report</p>
<p>AWR Diff Report</p>
<p>AWR RAC report</p>
<p>ASH report any time period, instance or filtered, filtering at session level is like SQL trace</p>
<p>                Use ADDM report!</p>
<p>Check Cardinality using SQL Monitor, key to work out why the execution plan may not be optimal.</p>
]]></content:encoded>
			<wfw:commentRss>http://trutek.com/wordpress//rmoug-graham-wood-25-years-at-oracle//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TruTek Consulting is &#8220;Key&#8221; to Upgrade Success</title>
		<link>http://trutek.com/wordpress//trutek-consulting-is-key-to-upgrade-success/</link>
		<comments>http://trutek.com/wordpress//trutek-consulting-is-key-to-upgrade-success/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 21:11:38 +0000</pubDate>
		<dc:creator>mswing</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://trutek.com/wordpress/?p=450</guid>
		<description><![CDATA[115102 Upgrade Client in PA going Live on R1213 &#8211; Utility company &#8220;I think all of TruTek&#8217;s assistance and especially the upgrade class were key to making this project successful.&#8221; Dan 2-15-12 115102 Upgrade Client in CA going live on &#8230; <a href="http://trutek.com/wordpress/\"/trutek-consulting-is-key-to-upgrade-success/\"">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>115102 Upgrade Client in PA going Live on R1213 &#8211; Utility company</p>
<p>&#8220;I think all of TruTek&#8217;s assistance and especially the upgrade class were key to making this project successful.&#8221; Dan 2-15-12</p>
<p>115102 Upgrade Client in CA going live on R1213 &#8211; Research Organization</p>
<p>&#8220;This latest upgrade test on the new production hardware went very well.  I don&#8217;t see any problem getting the  upgrade done over a 3 day weekend.  I have you guys to thank for that.&#8221;  Terry 1-31-12</p>
]]></content:encoded>
			<wfw:commentRss>http://trutek.com/wordpress//trutek-consulting-is-key-to-upgrade-success//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Migrating to OATM</title>
		<link>http://trutek.com/wordpress//migrating-to-oatm/</link>
		<comments>http://trutek.com/wordpress//migrating-to-oatm/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 22:20:43 +0000</pubDate>
		<dc:creator>mswing</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://trutek.com/wordpress/?p=445</guid>
		<description><![CDATA[OATM Don&#8217;t migrate CTXSYS schema to the  APPS_TS_TX_DATA tablespace. This will prevent you from using Cross Platform Transportable Tablespaces on 11i with 10gR2,  MOS Note 454574.1 Leave CTXSYS in it&#8217;s own tablespace as a default database schema. The Oracle Applications Tablespace &#8230; <a href="http://trutek.com/wordpress/\"/migrating-to-oatm/\"">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>OATM<br />
Don&#8217;t migrate CTXSYS schema to the  APPS_TS_TX_DATA tablespace. This will prevent you from using Cross Platform Transportable Tablespaces on 11i with 10gR2,  MOS Note 454574.1<br />
Leave CTXSYS in it&#8217;s own tablespace as a default database schema.</p>
<div>The Oracle Applications Tablespace Model (OATM) introduces a new consolidated tablespace model in Oracle Applications, that uses 12 locally managed tablespaces for all products, including the temporary tablespace, system tablespace, and undo segments. In this revised Oracle Applications Tablespace Model, each Oracle Applications database object is mapped to a tablespace based on its Input/Output characteristics. This new model allows for easier maintenance, reduces space usage, and allows for potential run-time performance gains.</div>
<div> </div>
<div>In this two day class we will:</div>
<div>1- Review OATM Model for Oracle Applications 11i</div>
<div>2- Install OATM migration utility</div>
<div>3- Run OATM migration utility</div>
<div>4- Review the parameters needed while starting OATM utility</div>
<div>5- Examine the OATM Menu Structure</div>
<div>6- Perform Additional Post Migration Steps</div>
<div> </div>
<div>Combine this class with the &#8220;Database Migration from 32 bit to 64 bit, using DataPump and Transportable Tablespaces&#8221; class for 5 days of training.</div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://trutek.com/wordpress//migrating-to-oatm//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slow TNS connections due to Network issue</title>
		<link>http://trutek.com/wordpress//slow-tns-connections-due-to-network-issue/</link>
		<comments>http://trutek.com/wordpress//slow-tns-connections-due-to-network-issue/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 06:25:24 +0000</pubDate>
		<dc:creator>mswing</dc:creator>
				<category><![CDATA[Performance Tuning]]></category>
		<category><![CDATA[R12.1 Upgrade]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[11g EBS R121 Upgrade]]></category>
		<category><![CDATA[oracle database performance tuning]]></category>
		<category><![CDATA[Slow TNS]]></category>

		<guid isPermaLink="false">http://trutek.com/wordpress/?p=423</guid>
		<description><![CDATA[Using OEL and 11g, an old / invalid DNS ip address in the first line of resolv.conf adds 60 seconds to each connection, causes very slow LOCAL=NO connections. The ip address in resolv.conf are checked from the top down. If &#8230; <a href="http://trutek.com/wordpress/\"/slow-tns-connections-due-to-network-issue/\"">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Using OEL and 11g, an old / invalid DNS ip address in the first line of resolv.conf adds 60 seconds to each connection, causes very slow LOCAL=NO connections. The ip address in resolv.conf are checked from the top down. If the first IP Address is BAD, it waits 60 seconds to timeout. During the EBS 1211 MP it adds about 35 hours with 125K jobs, for a total of 53 hours. It runs in 18 hours using the correct DNS server in resolv.conf. It happens that the DB and AS are on the same server and should logically use a BEQUETH connection to eliminate the network performance issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://trutek.com/wordpress//slow-tns-connections-due-to-network-issue//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Love the UKOUG</title>
		<link>http://trutek.com/wordpress//i-love-the-ukoug/</link>
		<comments>http://trutek.com/wordpress//i-love-the-ukoug/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 19:38:42 +0000</pubDate>
		<dc:creator>mswing</dc:creator>
				<category><![CDATA[Oracle User Groups]]></category>

		<guid isPermaLink="false">http://trutek.com/wordpress/?p=419</guid>
		<description><![CDATA[I&#8217;m at the UKOUG in Birmingham, England and I had a wonderful time. I presented at the UKOUG on how to &#8220;Tune Packaged Applications&#8221;, like EBS and Demantra. I&#8217;ve never been to a foriegn country where they spoke mostly English. &#8230; <a href="http://trutek.com/wordpress/\"/i-love-the-ukoug/\"">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m at the UKOUG in Birmingham, England and I had a wonderful time. I presented at the UKOUG on how to &#8220;Tune Packaged Applications&#8221;, like EBS and Demantra.</p>
<p>I&#8217;ve never been to a foriegn country where they spoke mostly English. The English people are great, very direct, but not as harshly direct as the Dutch or Germans (my grandmother was very German). My wife wants me to bring chocolates, so I went to the store and bought whatever looked good and different from what we have in the US. I&#8217;ll try it all out when I get home.</p>
]]></content:encoded>
			<wfw:commentRss>http://trutek.com/wordpress//i-love-the-ukoug//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m speaking at RMOUG</title>
		<link>http://trutek.com/wordpress//im-speaking-at-rmoug/</link>
		<comments>http://trutek.com/wordpress//im-speaking-at-rmoug/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 17:47:56 +0000</pubDate>
		<dc:creator>mswing</dc:creator>
				<category><![CDATA[Oracle User Groups]]></category>
		<category><![CDATA[11g]]></category>
		<category><![CDATA[OEL]]></category>
		<category><![CDATA[oracle performance tuning]]></category>
		<category><![CDATA[resolv.conf]]></category>

		<guid isPermaLink="false">http://trutek.com/wordpress/?p=404</guid>
		<description><![CDATA[The Big Picture of the R12.1.3 Upgrade It’s coming! Don’t close your eyes. Face it head on. Ease your worries by attending this walkthrough of an upgrade from Release 11.5.10.2 to Release 12.1.3. We’ll describe the tried and true tips &#8230; <a href="http://trutek.com/wordpress/\"/im-speaking-at-rmoug/\"">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a title="RMOUG Training Days" href="http://www.teamycc.com/RMOUG_2012_Conference/index.html."><img class="aligncenter size-medium wp-image-405" title="rmoug button" src="http://trutek.com/wordpress/wp-content/uploads/2011/11/rmoug-button-300x67.jpg" alt="" width="300" height="67" /></a></p>
<p><a href="http://www.teamycc.com/RMOUG_2012_Conference/index.html"><img class="size-full wp-image-406 alignleft" title="SpeakerButton" src="http://trutek.com/wordpress/wp-content/uploads/2011/11/SpeakerButton.jpg" alt="" width="176" height="147" /></a></p>
<p>The Big Picture of the R12.1.3 Upgrade</p>
<p>It’s coming! Don’t close your eyes. Face it head on. Ease your worries by attending this walkthrough of an upgrade from Release 11.5.10.2 to Release 12.1.3. We’ll describe the tried and true tips and techniques when we upgrade – everything from “oops – did you know about these extra patches?” to ways to decrease your down time.</p>
<p>The Big Picture shows at a high level the tasks and challenges of the R12.1.3 upgrade. The Big Picture describes how to get started, how to motivate business users to upgrade, and whether to re-implement or upgrade. It covers the technical upgrade steps with a few functional steps; understanding these steps helps all team members work toward a better upgrade.</p>
]]></content:encoded>
			<wfw:commentRss>http://trutek.com/wordpress//im-speaking-at-rmoug//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OAUG Connection Point Atlanta 2011 Nov 15-16</title>
		<link>http://trutek.com/wordpress//oaug-connection-point-atlanta-2011-nov-15-16/</link>
		<comments>http://trutek.com/wordpress//oaug-connection-point-atlanta-2011-nov-15-16/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 00:02:07 +0000</pubDate>
		<dc:creator>mswing</dc:creator>
				<category><![CDATA[E Business Suite]]></category>

		<guid isPermaLink="false">http://trutek.com/wordpress/?p=394</guid>
		<description><![CDATA[OAUG deserves a big &#8220;THANKS&#8221; from the Atlanta area BI and EBS upgrade customers. OAUG has recognized that travel budgets for training have deminished, and has therefore, brought the proverbial mountain to the users. Good job OAUG for recognizing the &#8230; <a href="http://trutek.com/wordpress/\"/oaug-connection-point-atlanta-2011-nov-15-16/\"">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>OAUG deserves a big &#8220;THANKS&#8221; from the Atlanta area BI and EBS upgrade customers. OAUG has recognized that travel budgets for training have deminished, and has therefore, brought the proverbial mountain to the users. Good job OAUG for recognizing the needs of the users.</p>
<p>Great Sessions. On Tuesday, the keynote featured Ognjen Pavlovic from Oracle, speaking on the EBS: Vision, Strategy and Roadmap.</p>
<p>I presented &#8220;The Big Picture: Upgrading to R12.1.3&#8243; at 9:45. After my presentation, I was asked to fill in for a missing panelist, on the OAUG Fusion Council &#8211; Fusion Applications Panel Discussion. The next session was the Best of OOW Panel &#8211; Four Presentation We Can&#8217;t Stop Talking About. I summarized Nadia&#8217;s presentation from OOW on Co-Existence if Fusion with EBS. Bill Dunham summarized Sara Woodhull presentation. In my opinion, Nadia and Sara have the two most important presentations from OOW. Alyssa Johnson summarized the EBS Vision, Strategy and Roadmap presentation from OOW.</p>
<p>In the last session of the day on Tuesday, I presented the &#8220;Release 12.1.3 Technical Upgrade Overview&#8221;. This is my favorite presentation because I go into alot of details about what breaks in the upgradee and why. I also present my opinion on hardware options.</p>
<p>On Wednesday morning, I went to Barb Matthews&#8217; presentation on &#8220;Lessons Learned from the R12.1 Upgrade&#8221;. This presentation is based on my upcoming article in OAUG Insight magazine, that Barb helped write.</p>
<p><a href="http://trutek.com/wordpress/wp-content/uploads/2011/11/PB160018.jpg"><img class="aligncenter size-medium wp-image-396" title="Barb Matthews and Donna Campbell" src="http://trutek.com/wordpress/wp-content/uploads/2011/11/PB160018-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Then, I went to Donna Campbell&#8217;s presentation on &#8220;What you need to know about Identifying Customizations, before Upgrading to Release 12.1.3. This was co-presented by Barb Matthews, with an interesting story of a customization that she wrote years ago.</p>
<p>This is a picture of the Release 12.1 Upgrade Panel, with Anne Carlson, Mike Swing and Bill Dunham shown.</p>
<div id="attachment_395" class="wp-caption aligncenter" style="width: 650px"><a href="http://trutek.com/wordpress/wp-content/uploads/2011/11/PB160027.jpg"><img class="size-large wp-image-395" title="Release R12 .1 Upgrade Panel with Anne Carlson, Mike Swing and Bill Dunham" src="http://trutek.com/wordpress/wp-content/uploads/2011/11/PB160027-1024x768.jpg" alt="" width="640" height="480" /></a><p class="wp-caption-text">R12.1 Upgrade Panel</p></div>
]]></content:encoded>
			<wfw:commentRss>http://trutek.com/wordpress//oaug-connection-point-atlanta-2011-nov-15-16//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connection Point Atlanta November 2011</title>
		<link>http://trutek.com/wordpress//connection-point-atlanta-november-2011/</link>
		<comments>http://trutek.com/wordpress//connection-point-atlanta-november-2011/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 05:06:43 +0000</pubDate>
		<dc:creator>mswing</dc:creator>
				<category><![CDATA[Oracle User Groups]]></category>

		<guid isPermaLink="false">http://trutek.com/wordpress/?p=390</guid>
		<description><![CDATA[Tuesday November 15th Today I had a very busy day. I presented &#8220;The Big Picture&#8221; after the keynote. The next hour I was on the OAUG Fusion Council &#8211; Fusion Applications Panel Disscusions, with John Stouffer and Alyssa Johnson. Then, &#8230; <a href="http://trutek.com/wordpress/\"/connection-point-atlanta-november-2011/\"">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Tuesday November 15th</p>
<p>Today I had a very busy day. I presented &#8220;The Big Picture&#8221; after the keynote. The next hour I was on the OAUG Fusion Council &#8211; Fusion Applications Panel Disscusions, with John Stouffer and Alyssa Johnson.</p>
<p>Then, I summarized Nadia&#8217;s Co-Existence presentation, from the Best of OOW Panel with Bill Dunham and Alyssa Johnson, and finished the day with the &#8220;Release 12.1.3 Technical Upgrade Overview&#8221; presentation.</p>
]]></content:encoded>
			<wfw:commentRss>http://trutek.com/wordpress//connection-point-atlanta-november-2011//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connection Point &#8211; Atlanta</title>
		<link>http://trutek.com/wordpress//connection-point-atlanta/</link>
		<comments>http://trutek.com/wordpress//connection-point-atlanta/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 18:16:19 +0000</pubDate>
		<dc:creator>mswing</dc:creator>
				<category><![CDATA[E Business Suite]]></category>
		<category><![CDATA[Oracle User Groups]]></category>
		<category><![CDATA[R12.1 Upgrade]]></category>

		<guid isPermaLink="false">http://trutek.com/wordpress/?p=379</guid>
		<description><![CDATA[I&#8217;m speaking at the Atlanta Connection Point next week on Nov15th and 16th. I have two presentations: The R12.1.3 Technical Upgrade Overview and,  The Big Picture of the R12.1 Upgrade It’s coming! Don’t close your eyes. Face it head on. &#8230; <a href="http://trutek.com/wordpress/\"/connection-point-atlanta/\"">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m speaking at the Atlanta Connection Point next week on Nov15th and 16th.</p>
<p><a href="http://trutek.com/wordpress/wp-content/uploads/2011/11/CP-atlanta-2011.jpg"><img class="aligncenter size-full wp-image-383" title="CP atlanta 2011" src="http://trutek.com/wordpress/wp-content/uploads/2011/11/CP-atlanta-2011.jpg" alt="" width="751" height="387" /></a></p>
<p>I have two presentations:</p>
<p><strong>The R12.1.3 Technical Upgrade Overview</strong></p>
<p><strong>and,</strong></p>
<p> <strong>The Big Picture of the R12.1 Upgrade</strong></p>
<p>It’s coming! Don’t close your eyes. Face it head on. Ease your worries by attending this walkthrough of an upgrade from Release 11.5.10.2 to Release 12.1.3. We’ll describe the tried and true tips and techniques when we upgrade – everything from “oops – did you know about these extra patches?” to ways to decrease your down time.</p>
<p>The Big Picture shows at a high level the tasks and challenges of the R12.1.3 upgrade. The Big Picture describes how to get started, how to motivate business users to upgrade, and whether to re-implement or upgrade. It covers the technical upgrade steps with a few functional steps; understanding these steps helps all team members work toward a better upgrade.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://trutek.com/wordpress//connection-point-atlanta//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

