<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>lutz hartmann as sysdba</title>
	<atom:link href="http://sysdba.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sysdba.wordpress.com</link>
	<description>database consulting GmbH</description>
	<lastBuildDate>Tue, 19 Feb 2013 07:54:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sysdba.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>lutz hartmann as sysdba</title>
		<link>http://sysdba.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sysdba.wordpress.com/osd.xml" title="lutz hartmann as sysdba" />
	<atom:link rel='hub' href='http://sysdba.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Dating with Oracle 11gR2</title>
		<link>http://sysdba.wordpress.com/2012/10/02/dating-with-oracle-11gr2/</link>
		<comments>http://sysdba.wordpress.com/2012/10/02/dating-with-oracle-11gr2/#comments</comments>
		<pubDate>Tue, 02 Oct 2012 07:01:08 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=586</guid>
		<description><![CDATA[We all know that we should not use TWO DIGIT YEAR formats in database applications since more than a decade. And we also know that we should never rely on implicit datatype conversion especially with dates. I recently came across a very surprising effect with Oracle 11g R2 Enterprise Edition when I was testing with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=586&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>We all know that we should not use TWO DIGIT YEAR formats in database applications since more than a decade.<br />
And we also know that we should never rely on implicit datatype conversion especially with dates.</p>
<p>I recently came across a very surprising effect with Oracle 11g R2 Enterprise Edition when I was testing with two digit years:</p>
<p>I convert a string with two digit year information into a date and then I convert this date into a string with four digit year format to see what the server made.</p>
<pre>SQL&gt; SELECT TO_CHAR(TO_DATE('<span style="color:#0000ff;">07-11-58</span>', '<span style="color:#0000ff;">dd-mm-yy</span>'), '<span style="color:#ff6600;">dd-mm-yyyy</span>') 
      FROM dual;

TO_CHAR(TO
----------
<span style="color:#339966;">07-11-2058</span></pre>
<p>The result is as expected: the &#8216;YY&#8217; interpreted the &#8217;58&#8242; as belonging to the current century.</p>
<pre>SQL&gt; SELECT TO_CHAR(TO_DATE('<span style="color:#0000ff;">07-11-58</span>', '<span style="color:#0000ff;">dd-mm-rr</span>'), 'dd-mm-yyyy') 
       FROM dual;

TO_CHAR(TO
----------
<span style="color:#339966;">07-11-1958</span></pre>
<p>Using the &#8216;RR&#8217; format also does what what we expect, since 58 is more than 49 and we currently have the year 2012 which is less than 2050, the two digits of the year are interpreted as belonging to the past century.</p>
<p>So far so good and I agree with the server, but have a look at this:</p>
<pre>SQL&gt; SELECT TO_CHAR(TO_DATE('<span style="color:#ff0000;">07-11-1958</span>', '<span style="color:#0000ff;">dd-mm-rr</span>'), 'dd-mm-yyyy')  
       FROM dual;

TO_CHAR(TO
----------
<span style="color:#339966;">07-11-1958</span></pre>
<p>I input a four digit year string and tell the server that it is a two digit year format. I am very surprised that the server is able to handle this anyway at all !!</p>
<p>And now let&#8217;s see what the server does with this:</p>
<pre>SQL&gt; SELECT TO_CHAR(TO_DATE('<span style="color:#ff0000;">07-11-1958</span>', 'dd-mm-<span style="color:#ff0000;">yy</span>'), 'dd-mm-yyyy') 
      FROM dual;

TO_CHAR(TO
----------
<span style="color:#ff0000;">07-11-1958</span></pre>
<p>This is strange, but obviously a feature, pls see the comment</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/586/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/586/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=586&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2012/10/02/dating-with-oracle-11gr2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>
	</item>
		<item>
		<title>APEX 4 for download</title>
		<link>http://sysdba.wordpress.com/2010/06/26/apex-4-for-download/</link>
		<comments>http://sysdba.wordpress.com/2010/06/26/apex-4-for-download/#comments</comments>
		<pubDate>Sat, 26 Jun 2010 08:21:28 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=577</guid>
		<description><![CDATA[Oracle Technology Network now has the new APEX version 4 available for download. The documentation and installation guides can be found here.  The Advanced Tutorials Guide contains up-to-date How-Tos including: Create a Tabular Form Create a Parameterized Report Create a Drill Down Report Control Form Layout Work with Check Boxes Implement a Web Service Create a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=577&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Oracle Technology Network now has the new <a href="http://www.oracle.com/technology/products/database/application_express/download.html" target="_blank">APEX version 4 available for download</a>.</p>
<p><a href="http://sysdba.files.wordpress.com/2010/06/apex_40.jpg"><img class="alignnone size-medium wp-image-578" title="apex_40" src="http://sysdba.files.wordpress.com/2010/06/apex_40.jpg?w=300&#038;h=140" alt="" width="300" height="140" /></a></p>
<p>The documentation and installation guides can be found <a href="http://www.oracle.com/technology/products/database/application_express/html/doc.html" target="_blank">here</a>. </p>
<p>The <a href="http://download.oracle.com/docs/cd/E14373_01/appdev.32/e13363/toc.htm" target="_blank">Advanced Tutorials Guide</a> contains up-to-date How-Tos including:</p>
<ul>
<li>Create a Tabular Form</li>
<li>Create a Parameterized Report</li>
<li>Create a Drill Down Report</li>
<li>Control Form Layout</li>
<li>Work with Check Boxes</li>
<li>Implement a Web Service</li>
<li>Create a Stacked Bar Chart</li>
<li>Upload and Download Files in an Application</li>
<li>Incorporate JavaScript into an Application</li>
<li>Build an Access Control Page</li>
<li>Review a Packaged Application</li>
<li>Create a Master Detail PDF Report</li>
<li>Design an Issue Tracking Application</li>
<li>Build and Deploy an Issue Tracking Application</li>
</ul>
<p>The new features are documented <a href="http://download.oracle.com/docs/cd/E17556_01/doc/user.40/e15517/what_new.htm#HTMDB01050" target="_blank">here</a>.</p>
<p>I will now update my courseware with the new features and deliver my courses as of August with the new version.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/577/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/577/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=577&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2010/06/26/apex-4-for-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2010/06/apex_40.jpg?w=300" medium="image">
			<media:title type="html">apex_40</media:title>
		</media:content>
	</item>
		<item>
		<title>Arab Oracle User Group is online</title>
		<link>http://sysdba.wordpress.com/2010/03/03/arab-oracle-user-group-is-online/</link>
		<comments>http://sysdba.wordpress.com/2010/03/03/arab-oracle-user-group-is-online/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 10:45:39 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=572</guid>
		<description><![CDATA[I have just found the website of the Arab Orcale Usergroup I was not aware that they are already online. Congratulations!!! =;-) LH<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=572&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I have just found the website of the <a href="http://www.araboug.org" target="_blank">Arab Orcale Usergroup</a></p>
<p><a href="http://sysdba.files.wordpress.com/2010/03/aoug.gif"><img class="alignnone size-full wp-image-574" title="aoug" src="http://sysdba.files.wordpress.com/2010/03/aoug.gif?w=450" alt=""   /></a></p>
<p>I was not aware that they are already online.</p>
<p>Congratulations!!!</p>
<p>=;-)</p>
<p>LH</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/572/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/572/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=572&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2010/03/03/arab-oracle-user-group-is-online/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2010/03/aoug.gif" medium="image">
			<media:title type="html">aoug</media:title>
		</media:content>
	</item>
		<item>
		<title>APEX 4.0 for Early Adopters in phase II</title>
		<link>http://sysdba.wordpress.com/2010/03/03/apex-4-0-for-early-adopters-in-phase-ii/</link>
		<comments>http://sysdba.wordpress.com/2010/03/03/apex-4-0-for-early-adopters-in-phase-ii/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 10:34:25 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=567</guid>
		<description><![CDATA[Today I have received a notification from OTN that APEX 4 for Early Adopters is in testing phase II now. It is possible to request a workspace now. The documentation is still not available yet, instead the online docs for APEX 3.2 are linked. Let&#8217;s test it. =;-) LH<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=567&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Today I have received a notification from OTN that <a href="http://www.oracle.com/technology/products/database/application_express/index.html" target="_blank">APEX 4 for Early Adopters is in testing phase II </a>now.</p>
<p><a href="http://sysdba.files.wordpress.com/2010/03/apex_ea_01.jpg"><img class="alignnone size-medium wp-image-568" title="apex_ea_01" src="http://sysdba.files.wordpress.com/2010/03/apex_ea_01.jpg?w=300&#038;h=116" alt="" width="300" height="116" /></a></p>
<p>It is possible to <a href="http://tryapexnow.com/" target="_blank">request a workspace now</a>.</p>
<p>The documentation is still not available yet, instead the online docs for APEX 3.2 are linked.</p>
<p><a href="http://sysdba.files.wordpress.com/2010/03/apex_ea_02.jpg"><img class="alignnone size-medium wp-image-569" title="apex_ea_02" src="http://sysdba.files.wordpress.com/2010/03/apex_ea_02.jpg?w=300&#038;h=146" alt="" width="300" height="146" /></a></p>
<p>Let&#8217;s test it.</p>
<p>=;-)</p>
<p>LH</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/567/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/567/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=567&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2010/03/03/apex-4-0-for-early-adopters-in-phase-ii/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2010/03/apex_ea_01.jpg?w=300" medium="image">
			<media:title type="html">apex_ea_01</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2010/03/apex_ea_02.jpg?w=300" medium="image">
			<media:title type="html">apex_ea_02</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft-Server-2008-Administration-Oracle</title>
		<link>http://sysdba.wordpress.com/2010/02/25/microsoft-server-2008-administration-oracle/</link>
		<comments>http://sysdba.wordpress.com/2010/02/25/microsoft-server-2008-administration-oracle/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 19:01:51 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=562</guid>
		<description><![CDATA[This week I deliver an 11g course in London downtown for a training partner of Oracle Education UK. It is a very fun class and I have some very interesting people in the course.  Mark Anderson is a highly skilled trainer and delivers the Microsoft SQL Server 2008 for the Experienced Oracle Database Administrator course for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=562&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>This week I deliver an 11g course in London downtown for a training partner of Oracle Education UK.</p>
<p>It is a very fun class and I have some very interesting people in the course.</p>
<p><a href="http://sysdba.files.wordpress.com/2010/02/mark_anderson.jpg"><img class="alignnone size-medium wp-image-563" title="Mark Anderson" src="http://sysdba.files.wordpress.com/2010/02/mark_anderson.jpg?w=100&#038;h=106" alt="" width="100" height="106" /></a> Mark Anderson<br />
is a highly skilled trainer and delivers the <a href="http://www.microsoft.com/learning/en/us/Course.aspx?ID=50068A" target="_blank">Microsoft SQL Server 2008 for the Experienced Oracle Database Administrator</a> course for internal Microsoft staff and is responsible for the high end Microsoft customers. This course is definitely one I would like to attend!</p>
<p><a href="http://sysdba.files.wordpress.com/2010/02/mark_anderson.jpg"></a></p>
<p>He is about to publish his latest  <a href="http://www.amazon.co.uk/Microsoft-Server-2008-Administration-Oracle/dp/0071700641" target="_blank">book on SQL SERVER for ORACLE DBAs</a> shortly. I am pretty shure that this will be another candidate for my BOOKS WORTH THEIR MONEY category  and I will definitely get a copy ASAP..</p>
<p>=;-)</p>
<p>sysdba</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/562/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/562/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=562&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2010/02/25/microsoft-server-2008-administration-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2010/02/mark_anderson.jpg?w=266" medium="image">
			<media:title type="html">Mark Anderson</media:title>
		</media:content>
	</item>
		<item>
		<title>Apex 4.0 available for testing</title>
		<link>http://sysdba.wordpress.com/2010/01/16/apex-4-0-available-for-testing/</link>
		<comments>http://sysdba.wordpress.com/2010/01/16/apex-4-0-available-for-testing/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 15:52:33 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=556</guid>
		<description><![CDATA[The new version of APEX is available for testing by early adopters. Use this link to request a workspace as hosted environment: I will post about my first impressions soon. =;-)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=556&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>The new version of APEX is available for testing by early adopters.</p>
<p><a href="http://sysdba.files.wordpress.com/2010/01/apex_04_logo.jpg"><img class="alignnone size-full wp-image-557" title="apex_04_logo" src="http://sysdba.files.wordpress.com/2010/01/apex_04_logo.jpg?w=450" alt=""   /></a></p>
<p>Use <a title="apex 4 workspace request" href="http://tryapexnow.com/apex/f?p=4550:1:7539498382621885" target="_blank">this link</a> to request a workspace as hosted environment:</p>
<p><a href="http://sysdba.files.wordpress.com/2010/01/oracle-application-express.jpg"><img class="alignnone size-medium wp-image-558" title="Oracle Application Express" src="http://sysdba.files.wordpress.com/2010/01/oracle-application-express.jpg?w=300&#038;h=300" alt="" width="300" height="300" /></a></p>
<p>I will post about my first impressions soon.</p>
<p>=;-)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/556/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/556/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=556&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2010/01/16/apex-4-0-available-for-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2010/01/apex_04_logo.jpg" medium="image">
			<media:title type="html">apex_04_logo</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2010/01/oracle-application-express.jpg?w=300" medium="image">
			<media:title type="html">Oracle Application Express</media:title>
		</media:content>
	</item>
		<item>
		<title>Dropping composite Primary Key does not drop the index</title>
		<link>http://sysdba.wordpress.com/2009/06/18/dropping-composit-primary-key-does-not-drop-the-index/</link>
		<comments>http://sysdba.wordpress.com/2009/06/18/dropping-composit-primary-key-does-not-drop-the-index/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 16:18:48 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=541</guid>
		<description><![CDATA[Today I have encountered a surprising fact: Scenario is 10.2.0.1  Express Edition on Win32. I have a table called job_history in the HR scheme which has a composit primary key : and there is an index for the primary key: SQL&#62; select index_name from user_indexes where table_name=&#8217;JOB_HISTORY&#8217;; INDEX_NAME Does the following info help to explain? &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=541&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Today I have encountered a surprising fact:</p>
<p>Scenario is 10.2.0.1  Express Edition on Win32.</p>
<p>I have a table called job_history in the HR scheme which has a composit primary key : and there is an index for the primary key:</p>
<h6><span style="color:#0000ff;">SQL&gt; select index_name from user_indexes where table_name=&#8217;JOB_HISTORY&#8217;;</span></h6>
<h6>INDEX_NAME</h6>
<h6>Does the following info help to explain?</h6>
<h6>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
JHIST_EMP_ID_ST_DATE_PK<br />
JHIST_JOB_IX<br />
JHIST_EMPLOYEE_IX<br />
JHIST_DEPARTMENT_IX</h6>
<p>This is my constraint in the data dictionary:</p>
<h6><span style="color:#0000ff;">SQL&gt; select column_name , position<br />
  2   from user_cons_columns<br />
  3  where constraint_name=&#8217;JHIST_EMP_ID_ST_DATE_PK&#8217;;</span></h6>
<h6>COLUMN_NAME      POSITION<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;    &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
EMPLOYEE_ID        1</h6>
<h6>START_DATE          2</h6>
<h6><img title="job_history" src="http://sysdba.files.wordpress.com/2009/06/job_history1.jpg?w=450&#038;h=143" alt="job_history" width="450" height="143" /></h6>
<p> </p>
<p>Now I drop the primary key constraint</p>
<h6><span style="color:#0000ff;">SQL&gt; alter table job_history drop constraint<br />
  2  JHIST_EMP_ID_ST_DATE_PK <span style="color:#ff0000;">including indexes</span>;</span></h6>
<h6>Table altered.</h6>
<p>And here is the surprise:</p>
<h6><span style="color:#0000ff;">SQL&gt; select index_name from user_indexes where table_name=&#8217;JOB_HISTORY&#8217;;</span></h6>
<h6>INDEX_NAME<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<span style="color:#ff0000;">JHIST_EMP_ID_ST_DATE_PK<br />
</span>JHIST_JOB_IX<br />
JHIST_EMPLOYEE_IX<br />
JHIST_DEPARTMENT_IX</h6>
<p>I do not see the point here. Why is the index still there?</p>
<p>Evern though I have explicitly written INCLUDING INDEXES.</p>
<p>BUG or Feature?!</p>
<p>Can anyone explain?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/541/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=541&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2009/06/18/dropping-composit-primary-key-does-not-drop-the-index/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2009/06/job_history1.jpg" medium="image">
			<media:title type="html">job_history</media:title>
		</media:content>
	</item>
		<item>
		<title>BUG with Bind Variables in Labeled Block in 10gR2</title>
		<link>http://sysdba.wordpress.com/2009/03/31/bug-with-bind-variables-in-labeled-block-in-10gr2/</link>
		<comments>http://sysdba.wordpress.com/2009/03/31/bug-with-bind-variables-in-labeled-block-in-10gr2/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 08:44:01 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=526</guid>
		<description><![CDATA[Yesterday in my course I ran into a strange BUG in Oracle Express (XE) on WIN32 and Linux 32 bit, in fact one of my students,  Ralf Spiwoks, found it: I have tried to run a  top level anonymous block in which assigned a value to a BIND variable and got kicked out of my session [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=526&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Yesterday in my course I ran into a strange BUG in Oracle Express (XE) on WIN32 and Linux 32 bit, in fact one of my students,  Ralf Spiwoks, found it:</p>
<p>I have tried to run a  top level anonymous block in which assigned a value to a BIND variable and got kicked out of my session with an ORA-03113.</p>
<p><span style="color:#0000ff;">SQL&gt; VAR lname VARCHAR2(4)</span></p>
<p><span style="color:#0000ff;">SQL&gt; &lt;&lt;my_lable&gt;&gt;<br />
 BEGIN<br />
    :lname:=&#8217;LUTZ&#8217;;<br />
   end;<br />
/</span></p>
<p>ERROR:<br />
ORA-03114: not connected to ORACLE<br />
 &lt;&lt;my_lable&gt;&gt;<br />
*<br />
<span style="color:#ff0000;">ERROR at line 1:<br />
ORA-03113: end-of-file on communication channel</span></p>
<p>THIS IS A BUG which exists in 10gR2.</p>
<p>Only top level blocks are affected by this BUG.<br />
 After I wrapped the block into another block it worked.</p>
<p>Here is the workaround:</p>
<p><span style="color:#0000ff;">BEGIN</span><br />
  &lt;&lt;my_lable&gt;&gt;<br />
 BEGIN<br />
 :lname:=&#8217;LUTZ&#8217;;<br />
 END;<br />
<span style="color:#0000ff;">END;</span><br />
/</p>
<p><span style="color:#ff0000;">PL/SQL procedure successfully completed.</span></p>
<p><span style="color:#ff0000;"><span style="color:#000000;"> I have tested only WIN 32 and LINUX32 =&gt;  XE and Enterprise Edition on Win32.  It has been fixed in the meentime, but I am not sure with which patch.<br />
In EE 11gR1  it works. </span></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/526/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/526/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=526&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2009/03/31/bug-with-bind-variables-in-labeled-block-in-10gr2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle Exadata Storage unvailed</title>
		<link>http://sysdba.wordpress.com/2008/09/27/oracle-exadata-storage-unvailed/</link>
		<comments>http://sysdba.wordpress.com/2008/09/27/oracle-exadata-storage-unvailed/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 12:06:51 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Oracle 11g features posts]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=509</guid>
		<description><![CDATA[A few days ago Larry Ellison has unvailed Oracle Exadata Storage, a family of software and hardware products including a hardware product which has been designed specially for large Data Warehouses in cooperation with HP, HP Oracle Database Machine. The Database Machine runs Oracle Database 11g and Real Application Clusters, Oracle Enterprise Linux, and includes [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=509&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>A few days ago <a href="http://www.oracle.com/pls/ebn/live_viewer.main?p_shows_id=6729841&amp;p_referred=undefined" target="_blank">Larry Ellison has unvailed</a> <a href="http://www.oracle.com/solutions/business_intelligence/exadata.html" target="_blank">Oracle Exadata Storage</a>, a family of software and hardware products including a hardware product which has been designed specially for large Data Warehouses in cooperation with HP, <a href="http://www.oracle.com/solutions/business_intelligence/database-machine.html" target="_blank">HP Oracle Database Machine</a>.</p>
<p><a href="http://sysdba.files.wordpress.com/2008/09/exadata.jpg"><img class="alignnone size-medium wp-image-512" title="exadata" src="http://sysdba.files.wordpress.com/2008/09/exadata.jpg?w=300&#038;h=93" alt="" width="300" height="93" /></a></p>
<p>The Database Machine runs Oracle Database 11<em>g</em> and Real Application Clusters, Oracle Enterprise Linux, and includes all the required Infiniband infrastructure and related hardware.</p>
<p>This is the first hardware product ever Oracle marketed under its own name.<br />
It integrates Oracle Database Software with highly suffisticated hardware using Linux and ASM to build a very fast database maschine.</p>
<p>You can find more detailed information on <a href="http://kevinclosson.wordpress.com/" target="_blank">Kevin Closson&#8217;s blog</a> where he maintains an FAQ page.<br />
Kevin is Performance Architect in Oracle’s Systems Technology Group which is a part of Server Technologies.</p>
<p>A few impressions from OOW by <a href="http://www.oracle-base.com/blog/2008/09/26/real-world-performance-exadata-and-ace-session/"> Tim Hall can be found on his blog</a>.</p>
<p> </p>
<p align="left"> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/509/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/509/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=509&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2008/09/27/oracle-exadata-storage-unvailed/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2008/09/exadata.jpg?w=300" medium="image">
			<media:title type="html">exadata</media:title>
		</media:content>
	</item>
		<item>
		<title>يا القاهرة! عملة اي؟</title>
		<link>http://sysdba.wordpress.com/2008/08/25/%d9%8a%d8%a7-%d9%82%d8%a7%d9%87%d8%b1%d8%a9-%d8%b9%d9%85%d9%84%d8%a9-%d8%a7%d9%8a%d8%9f/</link>
		<comments>http://sysdba.wordpress.com/2008/08/25/%d9%8a%d8%a7-%d9%82%d8%a7%d9%87%d8%b1%d8%a9-%d8%b9%d9%85%d9%84%d8%a9-%d8%a7%d9%8a%d8%9f/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 10:43:54 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[my journeys]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=488</guid>
		<description><![CDATA[A few days ago I arrived in Cairo again. I will deliver a series of 11g Administration Courses for Oracle again. One day after I arrived the there was a a big fire which burned down the house of the maglis ash-shura,  consultative councel    completely. I was lucky enough to have my new camera with me [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=488&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>A few days ago I arrived in Cairo again.</p>
<p>I will deliver a series of 11g Administration Courses for Oracle again.</p>
<p>One day after I arrived the there was a a big fire which burned down the house of the maglis ash-shura,  <a href="http://en.wikipedia.org/wiki/Majlis-ash-Shura" target="_blank">consultative councel</a>   <img class="alignnone size-full wp-image-490" src="http://sysdba.files.wordpress.com/2008/08/fire_blast-113_web.jpg?w=450" alt=""   /> completely.</p>
<p>I was lucky enough to have my new camera with me to take some exciting shots.</p>
<p><img class="alignnone size-medium wp-image-491" src="http://sysdba.files.wordpress.com/2008/08/fire_blast-058_web.jpg?w=300&#038;h=199" alt="" width="300" height="199" /> <img class="alignnone size-medium wp-image-492" src="http://sysdba.files.wordpress.com/2008/08/fire_blast-068_web.jpg?w=300&#038;h=199" alt="" width="300" height="199" /></p>
<p>It looked to me as if there were multiple fires burning at the same time.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/488/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/488/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/488/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/488/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=488&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2008/08/25/%d9%8a%d8%a7-%d9%82%d8%a7%d9%87%d8%b1%d8%a9-%d8%b9%d9%85%d9%84%d8%a9-%d8%a7%d9%8a%d8%9f/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2008/08/fire_blast-113_web.jpg" medium="image" />

		<media:content url="http://sysdba.files.wordpress.com/2008/08/fire_blast-058_web.jpg?w=300" medium="image" />

		<media:content url="http://sysdba.files.wordpress.com/2008/08/fire_blast-068_web.jpg?w=300" medium="image" />
	</item>
		<item>
		<title>Article on HOW TO Handle Block Corruption in Oracle 11g published</title>
		<link>http://sysdba.wordpress.com/2008/08/12/article-on-how-to-handle-block-corruption-in-oracle-11g-published/</link>
		<comments>http://sysdba.wordpress.com/2008/08/12/article-on-how-to-handle-block-corruption-in-oracle-11g-published/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 10:28:19 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[my articles]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=482</guid>
		<description><![CDATA[Today I have reveived a parcel from IOUG containing five copies of the current SELECT magazine. Plus a sweater with the SELECT Journal Contributer logo: Additionally I was granted a one year free membership for Independent Oracle User Group (IOUG) for my article on DETECTING AND REPAIRING CORRUPT BLOCKS IN ORACLE DATABASE 11g WITH THE DATA [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=482&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Today I have reveived a parcel from IOUG containing five copies of the current <a href="http://www.ioug.org/selectjournal/issues/08q2.cfm?&amp;CFID=6433804&amp;CFTOKEN=91666353">SELECT magazine</a>.</p>
<p><a href="http://sysdba.files.wordpress.com/2008/08/select_2008_03.jpg"><img class="alignnone size-medium wp-image-484" src="http://sysdba.files.wordpress.com/2008/08/select_2008_03.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a></p>
<p>Plus a sweater with the SELECT Journal Contributer logo:</p>
<p><a href="http://sysdba.files.wordpress.com/2008/08/ioug_lutz.jpg"><img class="alignnone size-medium wp-image-485" src="http://sysdba.files.wordpress.com/2008/08/ioug_lutz.jpg?w=225&#038;h=300" alt="" width="225" height="300" /></a></p>
<p>Additionally I was granted a one year free membership for <a href="http://www.ioug.org/">Independent Oracle User Group (IOUG)</a> for my article on DETECTING AND REPAIRING CORRUPT BLOCKS IN ORACLE DATABASE 11g WITH THE DATA RECOVERY ADVISER which is included in the curernt issue Volume 15 Number 3/2008.</p>
<p>Thanks IOUG and SELECT, this was a nice surprise.</p>
<p>=;-)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/482/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/482/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/482/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/482/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=482&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2008/08/12/article-on-how-to-handle-block-corruption-in-oracle-11g-published/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2008/08/select_2008_03.jpg?w=300" medium="image" />

		<media:content url="http://sysdba.files.wordpress.com/2008/08/ioug_lutz.jpg?w=225" medium="image" />
	</item>
		<item>
		<title>100&#8217;000 hits on sysdba.wordpress.com</title>
		<link>http://sysdba.wordpress.com/2008/04/14/100000-hits-on-sysdbawordpresscom/</link>
		<comments>http://sysdba.wordpress.com/2008/04/14/100000-hits-on-sysdbawordpresscom/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 08:51:59 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=440</guid>
		<description><![CDATA[Today my blog has reached to the 100&#8217;000 hits landmark. I am very happy that this has become such a successfull forum here. Thanks for reading I&#8217;ll keep on posting in the future!  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=440&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Today my blog has reached to the 100&#8217;000 hits landmark.</p>
<p>I am very happy that this has become such a successfull forum here.</p>
<p>Thanks for reading<br />
I&#8217;ll keep on posting in the future!</p>
<p> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/440/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/440/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/440/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=440&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2008/04/14/100000-hits-on-sysdbawordpresscom/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>
	</item>
		<item>
		<title>Free Oracle Clusterware for Linux Support Customers</title>
		<link>http://sysdba.wordpress.com/2008/04/03/free-oracle-clusterware-for-linux-support-customers/</link>
		<comments>http://sysdba.wordpress.com/2008/04/03/free-oracle-clusterware-for-linux-support-customers/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 09:38:50 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Oracle licensing information]]></category>
		<category><![CDATA[RAC]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=433</guid>
		<description><![CDATA[Oracle Technology Network announces that &#8220;Oracle Unbreakable Linux support customers at the Basic and Premier support levels now can download and deploy Oracle Clusterware at no additional license fee or support cost.&#8221;    Oracle Unbreakable Linux.  Before this the clusterware needed at least one Standard Edition License. Now you can download the clusterware and use it as an [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=433&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a target="_blank" href="otn.oracle.com">Oracle Technology Network</a> announces that &#8220;<a target="_blank" href="http://www.oracle.com/technologies/linux/index.html?msgid=6403393">Oracle Unbreakable Linux support</a> customers at the Basic and Premier support levels now can download and deploy <a target="_blank" href="http://www.oracle.com/technology/software/products/database/clusterware/index.html?msgid=6403393">Oracle Clusterware</a> at no additional license fee or support cost.&#8221;</p>
<p> <a href="http://sysdba.files.wordpress.com/2008/04/ubl-80.jpg" title="ubl-80.jpg"><img src="http://sysdba.files.wordpress.com/2008/04/ubl-80.thumbnail.jpg?w=450" alt="ubl-80.jpg" /></a> <a target="_blank" href="http://www.oracle.com/technologies/linux/index.html"> Oracle Unbreakable Linux</a>.</p>
<p> Before this the clusterware needed at least one Standard Edition License.</p>
<p>Now you can download the clusterware and use it as an extension of your Linux to make virtually any application highly available even without having an Oracle Database Server.</p>
<p>For more info on this and ready made scripts see <a target="_blank" href="http://sysdba.wordpress.com/2006/12/07/how-to-use-oracle-clusterware-to-protect-a-single-instance-database/">my previouse post</a> on how to protect a single instance database with the clusterware. <a href="http://sysdba.files.wordpress.com/2008/04/oracle_final_linux.gif" title="oracle_final_linux.gif"></a></p>
<p> This is really cool!</p>
<p>=;-)  <a href="http://sysdba.files.wordpress.com/2008/04/oracle_final_linux.gif" title="oracle_final_linux.gif"><img src="http://sysdba.files.wordpress.com/2008/04/oracle_final_linux.thumbnail.gif?w=450" alt="oracle_final_linux.gif" /></a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/433/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/433/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/433/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/433/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=433&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2008/04/03/free-oracle-clusterware-for-linux-support-customers/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2008/04/ubl-80.thumbnail.jpg" medium="image">
			<media:title type="html">ubl-80.jpg</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2008/04/oracle_final_linux.thumbnail.gif" medium="image">
			<media:title type="html">oracle_final_linux.gif</media:title>
		</media:content>
	</item>
		<item>
		<title>Speaking at Swiss Oracle Usergroup</title>
		<link>http://sysdba.wordpress.com/2008/03/27/speaking-at-swiss-oracle-usergroup/</link>
		<comments>http://sysdba.wordpress.com/2008/03/27/speaking-at-swiss-oracle-usergroup/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 16:15:18 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=431</guid>
		<description><![CDATA[Today I have delivered two presentation @ the  yearly conference of the Swiss Oracle Usergroup. The topics were : - Real Application Testing with Oracle 11g      REPLAY DATABASE and      SQL PERFORMANCE ADVISOR - SQL Plan Management and Automatic SQL Tuning in 11g I have used my new courseware which I have produced in the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=431&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Today I have delivered two presentation @ the</p>
<p><a href="http://sysdba.files.wordpress.com/2008/03/soug_03_2008.jpg" title="soug_03_2008.jpg"><img src="http://sysdba.files.wordpress.com/2008/03/soug_03_2008.thumbnail.jpg?w=450" alt="soug_03_2008.jpg" /></a> yearly conference of the Swiss Oracle Usergroup.</p>
<p>The topics were :</p>
<p>- Real Application Testing with Oracle 11g<br />
     REPLAY DATABASE and<br />
     SQL PERFORMANCE ADVISOR</p>
<p>- SQL Plan Management and Automatic SQL Tuning in 11g</p>
<p>I have used my new courseware which<br />
I have produced in the last few weeks for 11g New Features.</p>
<p>I offer to to deliver special courses for topics such as</p>
<p>- High Availability with Flashback and other 10g and 11g features<br />
- Backup 10g &amp; 11g<br />
- Memory Management 10g &amp; 11g<br />
- Upgrade Issues 10g &amp; 11g<br />
- 11g New Features Overview</p>
<p>If you are interested in these topics please contact me by email:</p>
<p><a href="mailto:info@sysdba.ch">info@sysdba.ch</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/431/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/431/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/431/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/431/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=431&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2008/03/27/speaking-at-swiss-oracle-usergroup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2008/03/soug_03_2008.thumbnail.jpg" medium="image">
			<media:title type="html">soug_03_2008.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Teaching Oracle Support and Trainers</title>
		<link>http://sysdba.wordpress.com/2008/03/18/teaching-oracle-support-and-trainers/</link>
		<comments>http://sysdba.wordpress.com/2008/03/18/teaching-oracle-support-and-trainers/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 14:56:37 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=429</guid>
		<description><![CDATA[At the moment I am in Cairo delivering a number of 11g New Features trainings. I have a completely packed class with 21 students.  Most of the students are Oracle Trainers, Support Agents and Consultants.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=429&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>At the moment I am in Cairo delivering a number of 11g New Features trainings.</p>
<p>I have a completely packed class with 21 students.</p>
<p><a href="http://sysdba.files.wordpress.com/2008/03/18032008001.jpg" title="18032008001.jpg"><img src="http://sysdba.files.wordpress.com/2008/03/18032008001.thumbnail.jpg?w=450" alt="18032008001.jpg" /></a> Most of the students are Oracle Trainers, Support Agents and Consultants.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/429/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/429/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/429/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=429&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2008/03/18/teaching-oracle-support-and-trainers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2008/03/18032008001.thumbnail.jpg" medium="image">
			<media:title type="html">18032008001.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Visiting Muhammad Ali</title>
		<link>http://sysdba.wordpress.com/2008/03/14/visiting-muhammad-ali/</link>
		<comments>http://sysdba.wordpress.com/2008/03/14/visiting-muhammad-ali/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 09:57:31 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=425</guid>
		<description><![CDATA[After arriving in Cairo I immediately went to see if the my friend Muhammd Ali is still in living in his place as before 13 years.  I had been living in his place for a while in the 90s.  Muhammad is an internationally recognized artist and has been painting since more than 25 years now. He [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=425&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://sysdba.files.wordpress.com/2008/03/ma_01.jpg" title="ma_01.jpg"></a>After arriving in Cairo I immediately went to see if the my friend Muhammd Ali is still in living in his place as before 13 years.  I had been living in his place for a while in the 90s.</p>
<p><a href="http://sysdba.files.wordpress.com/2008/03/muhammda_ali.jpg" title="muhammda_ali.jpg"><img src="http://sysdba.files.wordpress.com/2008/03/muhammda_ali.thumbnail.jpg?w=450" alt="muhammda_ali.jpg" /></a> <a target="_blank" href="http://www.nabillahoud.info/">Muhammad is an internationally recognized artist</a> and has been painting since more than 25 years now. He had exhibitions in Paris, Hamburg, Berlin, Zurich and many other places.</p>
<p>He lives in a very poor area near the great basar Khan Al-Khalili.</p>
<p>In April he will have an exhibition in Talaat Harb Streeet in Downtown Cairo and I hope <a href="http://sysdba.files.wordpress.com/2008/03/ma_01.jpg" title="ma_01.jpg"><img src="http://sysdba.files.wordpress.com/2008/03/ma_01.thumbnail.jpg?w=450" alt="ma_01.jpg" /></a> that he will sell a great number of his beautiful naive paintings again.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/425/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/425/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/425/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=425&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2008/03/14/visiting-muhammad-ali/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2008/03/muhammda_ali.thumbnail.jpg" medium="image">
			<media:title type="html">muhammda_ali.jpg</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2008/03/ma_01.thumbnail.jpg" medium="image">
			<media:title type="html">ma_01.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>وصلتُ إلى ام الدنيا</title>
		<link>http://sysdba.wordpress.com/2008/03/13/%d9%88%d8%b5%d9%84%d8%aa%d9%8f-%d8%a5%d9%84%d9%89-%d8%a7%d9%85-%d8%a7%d9%84%d8%af%d9%86%d9%8a%d8%a7/</link>
		<comments>http://sysdba.wordpress.com/2008/03/13/%d9%88%d8%b5%d9%84%d8%aa%d9%8f-%d8%a5%d9%84%d9%89-%d8%a7%d9%85-%d8%a7%d9%84%d8%af%d9%86%d9%8a%d8%a7/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 07:14:57 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=420</guid>
		<description><![CDATA[ Today I have arrived in Cairo, the Mother of the Earth. I will deliver a number of Oracle 11g trainings here. This is the first time I am in Egypt after 12 years. In the middel of the ninetees I had been living here for a couple of longer times. I am very interested in the developments [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=420&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://sysdba.files.wordpress.com/2008/03/wust_al_balad.jpg" title="wust_al_balad.jpg"></a><a href="http://sysdba.files.wordpress.com/2008/03/umm_ad_dunya.jpg" title="umm_ad_dunya.jpg"><img src="http://sysdba.files.wordpress.com/2008/03/umm_ad_dunya.thumbnail.jpg?w=450" alt="umm_ad_dunya.jpg" /></a> Today I have arrived in Cairo, the Mother of the Earth.</p>
<p>I will deliver a number of Oracle 11g trainings here.</p>
<p>This is the first time I am in Egypt after 12 years. <a href="http://sysdba.files.wordpress.com/2008/03/wust_al_balad.jpg" title="wust_al_balad.jpg"><img src="http://sysdba.files.wordpress.com/2008/03/wust_al_balad.thumbnail.jpg?w=450" alt="wust_al_balad.jpg" /></a><br />
In the middel of the ninetees I had been living here for a couple of longer times.<br />
I am very interested in the developments in Egyptian society since then.</p>
<p>Hopefully I will meet a lot of interesting people. </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/420/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/420/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/420/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/420/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=420&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2008/03/13/%d9%88%d8%b5%d9%84%d8%aa%d9%8f-%d8%a5%d9%84%d9%89-%d8%a7%d9%85-%d8%a7%d9%84%d8%af%d9%86%d9%8a%d8%a7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2008/03/umm_ad_dunya.thumbnail.jpg" medium="image">
			<media:title type="html">umm_ad_dunya.jpg</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2008/03/wust_al_balad.thumbnail.jpg" medium="image">
			<media:title type="html">wust_al_balad.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>A spanish evening with Steven Feuerstein</title>
		<link>http://sysdba.wordpress.com/2008/03/08/a-spanish-evening-with-steven-feuerstein/</link>
		<comments>http://sysdba.wordpress.com/2008/03/08/a-spanish-evening-with-steven-feuerstein/#comments</comments>
		<pubDate>Sat, 08 Mar 2008 15:09:53 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=419</guid>
		<description><![CDATA[Yesterday I had organized a little dinner with Steven Feuerstein, my former collegue Christoph Burandt and his lovely wife Silvia as well as my dear friend Jenny. Steven had delivered a two day seminar for Oracle University in Munich. Although he was very sick in the last days, he had caught  a chest cold and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=419&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://sysdba.files.wordpress.com/2008/03/07032008004.jpg" title="07032008004.jpg"><img src="http://sysdba.files.wordpress.com/2008/03/07032008004.thumbnail.jpg?w=450" alt="07032008004.jpg" /></a></p>
<p>Yesterday I had organized a little dinner with Steven Feuerstein, my former collegue Christoph Burandt and his lovely wife Silvia as well as my dear friend Jenny.</p>
<p>Steven had delivered a two day seminar for Oracle University in Munich. Although he was very sick in the last days, he had caught  a chest cold and swollowed an enormaouse amount of remedies in order to be able to deliver anyway, he preferred not to hang around in his room alone and come for our little dinner.</p>
<p>Thanks for coming Steven! Hope you&#8217;re feeling better already.</p>
<p>We talked about everything but PL/SQL and had a lot of fun.<br />
Christoph is the one who had introduced me to PL/SQL in 2000 and I was very happy to meet him once again.<br />
I think that he is one of the best instructors in this field you can get in Germany.<br />
His wife is from Peru and Steven adressed her in Spanish.</p>
<p>Everybody could speak Spanish except me!</p>
<p>=;-)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/419/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/419/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/419/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=419&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2008/03/08/a-spanish-evening-with-steven-feuerstein/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2008/03/07032008004.thumbnail.jpg" medium="image">
			<media:title type="html">07032008004.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>How to capture a workload in 10g for testing in 11g</title>
		<link>http://sysdba.wordpress.com/2008/03/03/how-to-capture-a-workload-in-10g-for-testing-in-11g/</link>
		<comments>http://sysdba.wordpress.com/2008/03/03/how-to-capture-a-workload-in-10g-for-testing-in-11g/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 11:43:56 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Oracle 10g features posts]]></category>
		<category><![CDATA[Oracle 11g features posts]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=416</guid>
		<description><![CDATA[Last week the patchset 10.2.0.4 was released by Oracle.  This patchset not only contains bugfixes but also comes with a number of New Features. One of the highlights is the possibilty to capture a workload in a 10.2.0.4 database and ship it to an 11g database for testing. Only with this feature in place the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=416&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Last week the patchset 10.2.0.4 was released by Oracle.</p>
<p> <font color="#ff0000">This patchset not only contains bugfixes but also comes with a number of</font> <a target="_blank" href="http://download.oracle.com/docs/cd/B19306_01/server.102/b14214/chapter1.htm#sthref439">New Features</a>.</p>
<p>One of the highlights is the possibilty to <a target="_blank" href="http://download.oracle.com/docs/cd/B19306_01/server.102/b14211/wcr.htm#BABIABIA">capture a workload in a 10.2.0.4 database </a>and <a href="http://sysdba.files.wordpress.com/2007/07/book_cover_oracle_11g_new_features_255.jpg" title="book_cover_oracle_11g_new_features_255.jpg"></a>ship it to an 11g database for testing.</p>
<p>Only with this feature in place the <a target="_blank" href="http://download.oracle.com/docs/cd/B28359_01/server.111/b28274/wcr.htm#BABCAABF">11g Real Application Testing Feature DATABASE REPLAY</a> makes real sense.<br />
Before this patchset it was only possible to capture a workload in an 11g database and run it for  testing in an also 11g database.</p>
<p>For more detailed evaluation please see my chapter on CHANGE MANAGEMENT in the <a target="_blank" href="http://www.rampant-books.com/book_2008_1_oracle_11g_new_features.htm">forthcoming 11g New Features book</a>.</p>
<p><a href="http://sysdba.files.wordpress.com/2007/07/book_cover_oracle_11g_new_features_255.jpg" title="book_cover_oracle_11g_new_features_255.jpg"><img src="http://sysdba.files.wordpress.com/2007/07/book_cover_oracle_11g_new_features_255.thumbnail.jpg?w=450" alt="book_cover_oracle_11g_new_features_255.jpg" /></a> It will be shipping aroung middle of the year.</p>
<p>Now customers can check in front what an upgrade would bring for them.</p>
<p>Here is a brief desription of the new 1og Feature:</p>
<p><font color="#3366ff">LUTZ AS SYSDBA @ orcl10g SQL&gt; SELECT * FROM v$version;</font></p>
<h6>BANNER<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 &#8211; Prod<br />
PL/SQL Release 10.2.0.4.0 &#8211; Production<br />
CORE    10.2.0.4.0      Production<br />
TNS for Linux: Version 10.2.0.4.0 &#8211; Production<br />
NLSRTL Version 10.2.0.4.0 &#8211; Production</h6>
<p>In 10.2.0.4 a new paramter is used to enable workload capturing:</p>
<p><font color="#3366ff">LUTZ AS SYSDBA @ orcl10g SQL&gt; show parameter pre_11</font></p>
<h6>NAME                                 TYPE        VALUE<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<font color="#ff0000">pre_11g_enable_capture               boolean     FALSE<br />
</font>Note:<br />
The PRE_11G_ENABLE_CAPTURE initialization parameter can only be used with Oracle Database 10g Release 2 (10.2). This parameter is not valid in subsequent releases. After upgrading the database, you will need to remove the parameter from the server parameter file (spfile) or the initialization parameter file (init.ora); otherwise, the database will fail to start up.</h6>
<p>Oracle even has created the script <font color="#3366ff">$ORACLE_HOME/rdbms/admin/wrrenbl.sql</font> which can be used to modity the parameter.  The script to disable workload capture is <font color="#3366ff">$ORACLE_HOME/rdbms/admin/wrrdsbl.sql</font>.  </p>
<p>The package<font color="#3366ff"> DBMS_WORKLOAD_CAPTURE</font> has been added to the 10g RDBMS. This is the interface to workload capturing and filtering:</p>
<p><font color="#3366ff">SYS AS SYSDBA @ orcl10g SQL&gt; desc dbms_workload_capture</font></p>
<h6><font color="#3366ff"></font><br />
PROCEDURE ADD_FILTER<br />
 Argument Name                  Type                    In/Out Default?<br />
 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212; &#8212;&#8212;&#8211;<br />
 FNAME                          VARCHAR2                IN<br />
 FATTRIBUTE                     VARCHAR2                IN<br />
 FVALUE                         VARCHAR2                IN<br />
PROCEDURE ADD_FILTER<br />
 Argument Name                  Type                    In/Out Default?<br />
 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212; &#8212;&#8212;&#8211;<br />
 FNAME                          VARCHAR2                IN<br />
 FATTRIBUTE                     VARCHAR2                IN<br />
 FVALUE                         NUMBER                  IN<br />
PROCEDURE DELETE_CAPTURE_INFO<br />
 Argument Name                  Type                    In/Out Default?<br />
 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212; &#8212;&#8212;&#8211;<br />
 CAPTURE_ID                     NUMBER                  IN<br />
PROCEDURE DELETE_FILTER<br />
 Argument Name                  Type                    In/Out Default?<br />
 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212; &#8212;&#8212;&#8211;<br />
 FNAME                          VARCHAR2                IN<br />
PROCEDURE EXPORT_AWR<br />
 Argument Name                  Type                    In/Out Default?<br />
 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212; &#8212;&#8212;&#8211;<br />
 CAPTURE_ID                     NUMBER                  IN<br />
PROCEDURE FINISH_CAPTURE<br />
 Argument Name                  Type                    In/Out Default?<br />
 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212; &#8212;&#8212;&#8211;<br />
 TIMEOUT                        NUMBER                  IN     DEFAULT<br />
 REASON                         VARCHAR2                IN     DEFAULT<br />
FUNCTION GET_CAPTURE_INFO RETURNS NUMBER<br />
 Argument Name                  Type                    In/Out Default?<br />
 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212; &#8212;&#8212;&#8211;<br />
 DIR                            VARCHAR2                IN<br />
FUNCTION REPORT RETURNS CLOB<br />
 Argument Name                  Type                    In/Out Default?<br />
 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212; &#8212;&#8212;&#8211;<br />
 CAPTURE_ID                     NUMBER                  IN<br />
 FORMAT                         VARCHAR2                IN<br />
PROCEDURE START_CAPTURE<br />
 Argument Name                  Type                    In/Out Default?<br />
 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212; &#8212;&#8212;&#8211;<br />
 NAME                           VARCHAR2                IN<br />
 DIR                            VARCHAR2                IN<br />
 DURATION                       NUMBER                  IN     DEFAULT<br />
 DEFAULT_ACTION                 VARCHAR2                IN     DEFAULT<br />
 AUTO_UNRESTRICT                BOOLEAN                 IN     DEFAULT</h6>
<p>And the data dictionary views <font color="#3366ff">DBA_WORKLOAD_CAPTURES</font> and <font color="#3366ff">DBA_WORKLOAD_FILTERS</font> can be used to monitor the captures.</p>
<p> As in 11g the packages captures all incomming requestes into external files which need to be shipped to a testing system and pre-processed on the testing system. Those files contain logical information to replay client requests in the appropriate sequence and with all contention and waiting as it happened on the capture site. On the testing site we need to start replay clients to run the test workload.</p>
<p>This is the interface for REPLAY DATABASE in the OEM GUI:</p>
<p><a href="http://sysdba.files.wordpress.com/2008/03/capture_in_10g.png" title="capture_in_10g.png"><img src="http://sysdba.files.wordpress.com/2008/03/capture_in_10g.thumbnail.png?w=450" alt="capture_in_10g.png" /></a></p>
<p>The executable <font color="#3366ff">$ORACLE_HOME/bin/wrc </font>is only available in 11g.</p>
<p> So we can now capture in 10g and replay in 11g.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/416/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/416/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/416/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=416&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2008/03/03/how-to-capture-a-workload-in-10g-for-testing-in-11g/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/07/book_cover_oracle_11g_new_features_255.thumbnail.jpg" medium="image">
			<media:title type="html">book_cover_oracle_11g_new_features_255.jpg</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2008/03/capture_in_10g.thumbnail.png" medium="image">
			<media:title type="html">capture_in_10g.png</media:title>
		</media:content>
	</item>
		<item>
		<title>10.2.0.4 patchset available for download</title>
		<link>http://sysdba.wordpress.com/2008/03/01/10204-patchset-available-for-download/</link>
		<comments>http://sysdba.wordpress.com/2008/03/01/10204-patchset-available-for-download/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 13:24:40 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=413</guid>
		<description><![CDATA[I  I am just downloading the latest patchset for RDBMS Server 10.2.0.4 for Linux x86. It is documented in Metalink NOTE: 316900.1  Components of This Patch Set The following are the updated components of this patch set: Up to January 2008 CPU is included in this patch set. Platform-specific bug fixes as listed in the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=413&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://sysdba.files.wordpress.com/2008/03/10_2_0_4_patchset1.jpg" title="10_2_0_4_patchset1.jpg"><img src="http://sysdba.files.wordpress.com/2008/03/10_2_0_4_patchset1.jpg?w=450" alt="10_2_0_4_patchset1.jpg" /></a>I</p>
<p> I am just downloading the latest patchset for RDBMS Server 10.2.0.4 for Linux x86.</p>
<p>It is documented in Metalink NOTE: 316900.1</p>
<p> Components of This Patch Set</p>
<p>The following are the updated components of this patch set:</p>
<ul>
<li>Up to January 2008 CPU is included in this patch set.</li>
<li>Platform-specific bug fixes as listed in the <a href="https://updates.oracle.com/ARULink/Readme/process_form?aru=9961232&amp;no_header=1#CJGGHJIH">&#8220;Fixed Platform-Specific Bugs&#8221;</a> section</li>
<li>Generic bug fixes as listed in the <span class="italic">List of Bugs fixed</span> document</li>
<li>Oracle Configuration Manager 10.2.7.1</li>
</ul>
<p>I am very curiose about the possibility to capture a workload in 10g and run for Real Application Testing in 11g.</p>
<p>It should be included in this patchset.</p>
<p>I will try it and post about it here ASAP.</p>
<p>=;-)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/413/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/413/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/413/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/413/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=413&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2008/03/01/10204-patchset-available-for-download/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2008/03/10_2_0_4_patchset1.jpg" medium="image">
			<media:title type="html">10_2_0_4_patchset1.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>SSWUG has removed my content from their site!</title>
		<link>http://sysdba.wordpress.com/2008/02/29/sswug-has-removed-my-content-from-their-site/</link>
		<comments>http://sysdba.wordpress.com/2008/02/29/sswug-has-removed-my-content-from-their-site/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 20:31:16 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=412</guid>
		<description><![CDATA[It worked! All you need to do is threaten them! They have removed the links to my content. We&#8217;re Sorry &#8211; We Were Unable to Locate The Article You Requested.It&#8217;s possible that this article is no longer available, has been reported as a bad link or is currently being reviewed/edited by its author. We apologize [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=412&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>It worked!</p>
<p>All you need to do is threaten them!</p>
<p>They have removed the links to my content.</p>
<p><strong>We&#8217;re Sorry &#8211; We Were Unable to Locate The Article You Requested.</strong><strong>It&#8217;s possible that this article is no longer available, has been reported as a bad link or is currently being reviewed/edited by its author.</p>
<p></strong>We apologize for the inconvenience! Please use the menu system or the search boxes to locate other items that may be of interest.</p>
<p>If you feel there has been an error, please <a href="http://www.sswug.org/sendfeedback.asp">contact us</a> and let us know about the issue and we&#8217;ll get on it immediately!</p>
<p> <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/412/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/412/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/412/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/412/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=412&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2008/02/29/sswug-has-removed-my-content-from-their-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>
	</item>
		<item>
		<title>A thief disguised as a USERGROUP</title>
		<link>http://sysdba.wordpress.com/2008/02/28/a-thief-disguised-as-a-usergroup/</link>
		<comments>http://sysdba.wordpress.com/2008/02/28/a-thief-disguised-as-a-usergroup/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 09:57:42 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[my articles]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=411</guid>
		<description><![CDATA[Yesterday I got informed that the &#8220;Wordlwide SQL SERVER USERGROUP&#8221; has again added content from my blog to their site. This is the second time already that this strange organization steals my posts and demands money from their &#8220;MEMBERS&#8221; to look at it. I had them remove my posts already in 2006. This so call usergroup [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=411&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Yesterday I got informed that the &#8220;Wordlwide SQL SERVER USERGROUP&#8221; has again <a target="_blank" href="http://www.google.com/search?&amp;q=site%3Awww.sswug.org+lutz">added content from my blog to their site</a>.</p>
<p>This is the second time already that this strange organization steals my posts and demands money from their &#8220;MEMBERS&#8221; to look at it. I had them remove my posts already in 2006.</p>
<p>This so call usergroup does not have any publications of its own and there are no meetings of the members (if they had any, a lot of people would show up there and yell at their chairman I think). Their members seem to be just people who are not able to search the web by themselves and pay for a compilation of links to stolen content they could have for free in the web.</p>
<p> It seems to be  basically just one person behind this organization:</p>
<div><font size="2" face="Arial"><font color="#0000ff">Steve Wynkoop: </font></p>
<div><font size="2" face="Arial"></font></div>
<div>
<address><font color="#0000ff">The SQL Server Worldwide User&#8217;s Group (SSWUG.ORG)</font></address>
<address><font color="#0000ff">Bits on the Wire, Inc.</font></address>
<address><font color="#0000ff">8987 E. Tanque Verde #309-269</font></address>
<address><font color="#0000ff">Tucson</font></address>
<address><font color="#0000ff">Arizona 85749</font></address>
</div>
<p></font></div>
<p>I think that the expression <em><strong>usergroup</strong></em> should be a protected expression by law and that it should be possible to screw such crooks for making money with the intellectual property of other people.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/411/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/411/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/411/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=411&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2008/02/28/a-thief-disguised-as-a-usergroup/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>
	</item>
		<item>
		<title>vandalism in the blogging community</title>
		<link>http://sysdba.wordpress.com/2008/02/10/vandalism-in-the-blogging-community/</link>
		<comments>http://sysdba.wordpress.com/2008/02/10/vandalism-in-the-blogging-community/#comments</comments>
		<pubDate>Sun, 10 Feb 2008 15:31:54 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=402</guid>
		<description><![CDATA[Looking at my list of referrers to my blog I recently found a link comming in to one of my posts. I followed the link and found a website where someone had a blog which justs consists of stolen posts. He just had added my post to his blog and did not even mention me. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=402&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Looking at my list of referrers to my blog I recently found a link comming in to one of my posts.</p>
<p>I followed the link and found a website where someone had a blog which justs consists of stolen posts. He just had added my post to his blog and did not even mention me. His name is, oh no! I am not even going to mention it here because this would only increase his daily hits!</p>
<p>I contacted him by email and asked him to remove my post right away &#8211; nothing ever happened since more than a week now.</p>
<p>Theft of intellectual property seems to become a more and more fashionable practice.</p>
<p>Here is a link to a <a target="_blank" href="http://www.dba-oracle.com/t_theft_research_intellectual_property.htm">list of some recent popular cases</a> of this kind of vandalism.</p>
<p>I am not sure if I want to continue blogging in the future.</p>
<p>Let&#8217;s publish books again<br />
and let people pay for it!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/402/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/402/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/402/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=402&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2008/02/10/vandalism-in-the-blogging-community/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>
	</item>
		<item>
		<title>Tutorial on defending against SQL injection</title>
		<link>http://sysdba.wordpress.com/2008/02/09/tutorial-against-sql-injection/</link>
		<comments>http://sysdba.wordpress.com/2008/02/09/tutorial-against-sql-injection/#comments</comments>
		<pubDate>Sat, 09 Feb 2008 02:25:31 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[my Oracle news]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=401</guid>
		<description><![CDATA[Today I have received a comment on my last post from my friend Jean Francois Verrier. J.F. Is a courseware developer at Oracle Corporation and we have met in San Francisco and Utrecht a couple of times. He is responsible for the New Features and RAC courseware which Oracle University uses in their courses.  I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=401&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Today I have received a comment on my last post from my friend Jean Francois Verrier.<br />
J.F. Is a courseware developer at Oracle Corporation and we have met in San Francisco and Utrecht a couple of times.<br />
He is responsible for the New Features and RAC courseware which Oracle University uses in their courses.</p>
<p> I had a look at his profile and found a very interesting link there, which I want to share here.<br />
It is a website from Oracle Server Technologies. It gives very intersing information about how to protect against SQL injection, one of the most serios threats for DBAs.</p>
<p>Have a look <a target="_blank" href="http://st-curriculum.oracle.com/tutorial/SQLInjection/index.htm">here</a>! You will like it!</p>
<p> =;-)</p>
<p>Lutz</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/401/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/401/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/401/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=401&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2008/02/09/tutorial-against-sql-injection/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>
	</item>
		<item>
		<title>being a blind eyed Oracle instructor &#8211; system partitioning in 11g</title>
		<link>http://sysdba.wordpress.com/2008/02/08/being-a-blind-eyed-oracle-instructor-system-partitioning-in-11g/</link>
		<comments>http://sysdba.wordpress.com/2008/02/08/being-a-blind-eyed-oracle-instructor-system-partitioning-in-11g/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 00:50:13 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Oracle 11g features posts]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=399</guid>
		<description><![CDATA[Tonight I met with Laurent Schneider and we had a couple of beers together.  We chatted about God and the world and we had lots of fun. Amoung others we talked about things in Oracle 11g which do not really work yet and¦or are undocumented or documented wrong. I was lucky to be able to tell him [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=399&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Tonight I met with <a target="_blank" href="http://laurentschneider.com/">Laurent Schneider</a> and we had a couple of beers together.</p>
<p><a href="http://sysdba.files.wordpress.com/2008/02/laurent_schlachthof.jpg" title="laurent_schlachthof.jpg"><img src="http://sysdba.files.wordpress.com/2008/02/laurent_schlachthof.thumbnail.jpg?w=450" alt="laurent_schlachthof.jpg" /></a> We chatted about God and the world and we had lots of fun.</p>
<p>Amoung others we talked about things in Oracle 11g which do not really work yet and¦or are undocumented or documented wrong.<br />
I was lucky to be able to tell him about things which he did not know about yet<br />
like the not yet documented parameter DDL_LOGGING, <a target="_blank" href="http://sysdba.wordpress.com/2007/10/16/ddd-logging-in-the-alert-log-in-11g/">see my post here</a>.  I think that Oracle development just forgot to document it.</p>
<p>It is hard to catch up with Laurent sometimes!</p>
<p>I am the reviewer of Laurent&#8217;s yet to be published <a target="_blank" href="http://www.rampant-books.com/book_2008_2_advanced_sql_programming.htm">book on 11g SQL for advanced developers</a> and DBAs and he demonstrated some features he had filed a BUG for in the last days.</p>
<p>Of course Oracle 11g was a big topic and we have found out some interesting things about system partitioning ( it is more that he found out than me, altough I teach the stuff to people in my New Features courses !!!!)</p>
<p>He  talked about something in one of the chapters in his book which he had found about system partitioning in 11g and which did not work. </p>
<p>I got suspicious because I was so sure that it was possible, since it was something I teach to my students in my 1day 11g New Features Overview classes.<br />
But I had to back down and confess again that I did not really verify every single bit of code of the Oracle Coureseware.</p>
<p>This is why I want to share the lecture I had to take tonight (luckily with a couple of beers!):</p>
<p>Oracle has introduced a number of new partitioning algorithms with release 11g.  One of these new features is called <font color="#0000ff"><a target="_blank" href="http://download.oracle.com/docs/cd/B28359_01/server.111/b28279/chapter1.htm#FEATURENO06988">SYSTEM PARTITIONING</a></font>. This is very handy if you want to partition a table but cannot make uo your mind about a partitioning key for some reason. Maybe there is only one column holding xml data in the table or what so ever.</p>
<p>The current version of the courseware for the 11g New  Features Courses says that the following syntax is valid and Laurent showed me that it is not:</p>
<p>&#8211; I create a table which is system partitioned:</p>
<h6><font color="#0000ff">SYS AS SYSDBA @ orcl SQL&gt; create table lutz.t3 (col1 number, col2 number)<br />
  2  partition by system<br />
  3  (partition p1);<br />
</font>Table created.</h6>
<p>&#8211; I create a bind varable (first time a number second time a string)<br />
&#8211; which I want to use to tell Oracle which partition to user for an INSERT<br />
&#8211;and assign it the value 1 and try an INSERT:</p>
<h6><font color="#0000ff">SYS AS SYSDBA @ orcl SQL&gt; var par number<br />
SYS AS SYSDBA @ orcl SQL&gt; exec :par:=1<br />
SYS AS SYSDBA @ orcl SQL&gt; insert into lutz.t3 partition (:par) values (1,2);<br />
</font><font color="#ff0000">insert into lutz.t3 partition (:par) values (1,2)<br />
                               *<br />
ERROR at line 1:<br />
ORA-14108: illegal partition-extended table name syntax</font></h6>
<p>&#8211; I try another time with a bid variable of type string:</p>
<h6><font color="#0000ff">SYS AS SYSDBA @ orcl SQL&gt; var par varchar2(2)<br />
SYS AS SYSDBA @ orcl SQL&gt; exec :par:=&#8217;p1&#8242;</font><br />
<font color="#ff0000"><font color="#0000ff">SYS AS SYSDBA @ orcl SQL&gt; insert into lutz.t3 partition (:par) values (1,2);</font><br />
insert into lutz.t3 partition (:par) values (1,2)<br />
                               *<br />
ERROR at line 1:<br />
ORA-14108: illegal partition-extended table name syntax</font></h6>
<p>&#8211; I try it for a last time and now I try to use the partition number directly:</p>
<h6><font color="#0000ff">SYS AS SYSDBA @ orcl SQL&gt; insert into lutz.t3 partition (1) values (1,2);</font></h6>
<h6><font color="#ff0000">insert into lutz.t3 partition (1) values (1,2)<br />
                               *<br />
ERROR at line 1:<br />
ORA-14108: illegal partition-extended table name syntax</font></h6>
<p>The same error pops up!</p>
<p><font color="#00ff00">And here is the explanation of the error:</font></p>
<p>[oracle@rhas4 ~]$ oerr ora 14108<br />
14108, 00000, &#8220;illegal partition-extended table name syntax&#8221;<br />
<font color="#ff0000">// *Cause:  Partition to be accessed may only be specified using its name.<br />
//          User attempted to use a partition number or a bind variable.<br />
</font>// *Action: Modify statement to refer to a partition using its name</p>
<p><font color="#ff0000">You can only reference a system partition with its name not by its number or even via a bind variable! At least not in 11.0.6!!!</font></p>
<p><font color="#000000">Sorry people but I just could not yet test all of the more than 500 New Features in the courseware. But I will keep on hitting the road, for sure!</font></p>
<p>=;-)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/399/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/399/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/399/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/399/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=399&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2008/02/08/being-a-blind-eyed-oracle-instructor-system-partitioning-in-11g/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2008/02/laurent_schlachthof.thumbnail.jpg" medium="image">
			<media:title type="html">laurent_schlachthof.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Steven Feuerstein launches new PL/SQL forum</title>
		<link>http://sysdba.wordpress.com/2008/02/04/steven-feuerstein-launches-new-plsql-forum/</link>
		<comments>http://sysdba.wordpress.com/2008/02/04/steven-feuerstein-launches-new-plsql-forum/#comments</comments>
		<pubDate>Mon, 04 Feb 2008 19:37:23 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/?p=398</guid>
		<description><![CDATA[&#8220;Making PL/SQL a better language&#8221;. This is Steven Feuerstein&#8217;s obsession. In his courses he always encourages his students to send their comments to Bryn Llewellyn the project manager for PL/SQL at Oracle. A while ago Steven already has launched a PL/SQL forum in OTN where people can directly ask him questions. Now Steven has put together [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=398&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>&#8220;Making PL/SQL a better language&#8221;. <a target="_blank" href="http://www.toadworld.com/Education/StevenFeuersteinsPLSQLExperience/tabid/153/Default.aspx">This is Steven Feuerstein&#8217;s obsession</a>.</p>
<p>In his courses he always encourages his students to send their comments to <a href="mailto:Bryn.Llewellyn@oracle.com">Bryn Llewellyn</a> the project manager for PL/SQL at Oracle.</p>
<p>A while ago Steven already has launched a <a target="_blank" href="http://www.oracle.com/technology/pub/columns/plsql/index.html">PL/SQL forum in OTN</a> where people can directly ask him questions.</p>
<p>Now Steven has put together a <a target="_blank" href="http://ILovePLSQLAnd.net">website to make it really easy</a> for developers to communicate their concerns and priorities to Bryn (with his support, of course).</p>
<p> Seems to become an interesting place and I will add it to my blogrole. </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/398/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/398/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/398/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=398&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2008/02/04/steven-feuerstein-launches-new-plsql-forum/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>
	</item>
		<item>
		<title>Upgrading Cern IT to 11g</title>
		<link>http://sysdba.wordpress.com/2008/02/01/11g-course-for-cern-it/</link>
		<comments>http://sysdba.wordpress.com/2008/02/01/11g-course-for-cern-it/#comments</comments>
		<pubDate>Fri, 01 Feb 2008 19:57:28 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[CERN]]></category>
		<category><![CDATA[my special courses]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2008/02/01/11g-course-for-cern-it/</guid>
		<description><![CDATA[This week I was in Geneva again to deliver another compressed course for the IT department of CERN and again it was just a pleasure to squeeze a five day training into three days. These CERN people are so highly motivated and hungry for new features. It is always fun to teach them. I was especially [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=397&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>This week I was in Geneva again to deliver another compressed course for the IT department of <a href="http://public.web.cern.ch/Public/Welcome.html" target="_blank">CERN</a> and again it was just a pleasure to squeeze a five day training into three days. These CERN people are so highly motivated and hungry for new features. It is always fun to teach them.</p>
<p>I was especially pleased to see that almost all of the delegates had already attented at least one or two trainings from me last year, so we were already familiar with each other.</p>
<p>Since I did not have the chance to attend the <a href="http://conference.ukoug.org/" target="_blank">UK Oracle Usergroup meeting</a> it was nice to have Luca Canali again in the class. He had delivered a speach about the ASM internal  in Birmingham last December and I would have really loved to listen to it. He is one of the few persons I know who can really tell about the limits of ASM from real life experience.</p>
<p>Also I was so happy to meet Christopher Lambert again. He just seems to know everything about Oracle Enterprise Manager and I always learn from him.</p>
<p>Here are a few snapshots from the classroom I have taken with my cellphone.</p>

<p> I hope that I was able to meet their expectations once again and will be invited again.</p>
<p>It is a great honor for me to deliver for you guys!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/397/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/397/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/397/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/397/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=397&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2008/02/01/11g-course-for-cern-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>
	</item>
		<item>
		<title>Returned from Turkey</title>
		<link>http://sysdba.wordpress.com/2008/01/13/returned-from-turkey/</link>
		<comments>http://sysdba.wordpress.com/2008/01/13/returned-from-turkey/#comments</comments>
		<pubDate>Sun, 13 Jan 2008 09:57:35 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[my journeys]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2008/01/13/returned-from-turkey/</guid>
		<description><![CDATA[Yesterday I have returned from Turkey. I was there  for 8days together with a very close friend. On the way back we had a stop over at Istanbul airport where   Tonguç Yilmaz waited for me to chat and have a coffee. Can you immagine that there is somebody waiting for you at 6:15h in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=394&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Yesterday I have returned from Turkey.<br />
I was there  for 8days together with a very close friend.</p>
<p>On the way back we had a stop over at Istanbul airport where</p>
<p><span><a href="http://sysdba.files.wordpress.com/2008/01/tonguc.jpg" title="tonguc.jpg"><img src="http://sysdba.files.wordpress.com/2008/01/tonguc.thumbnail.jpg?w=450" alt="tonguc.jpg" /></a>  <span>Tonguç </span>Yilmaz waited for me<br />
to chat and have a coffee. Can you immagine that there is somebody waiting for you at 6:15h in the morning just to hug you and have a chat at the airport.<br />
</span><span>This is real friendship and hospitality!</span></p>
<p><span>He updated me about the latest gossip from the bloggers community and we talked about OOW and UKOUG meeting and who we have met and who is new to the scene. <br />
</span><span> Thanks for coming <span>Tonguç</span>, you are such a nice guy!</span></p>
<p><span>=;-)</span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/394/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/394/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/394/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/394/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=394&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2008/01/13/returned-from-turkey/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2008/01/tonguc.thumbnail.jpg" medium="image">
			<media:title type="html">tonguc.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Article on Oracle 11g DDL New Features published</title>
		<link>http://sysdba.wordpress.com/2007/12/28/article-on-oracle-11g-ddl-new-features-published/</link>
		<comments>http://sysdba.wordpress.com/2007/12/28/article-on-oracle-11g-ddl-new-features-published/#comments</comments>
		<pubDate>Fri, 28 Dec 2007 12:26:03 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/12/28/article-on-oracle-11g-ddl-new-features-published/</guid>
		<description><![CDATA[Today I have received a copy of  Swiss Oracle Usergroup&#8217;s Newsletter 1/2008. It contains my article on some 11g New Features related to DDL. I had posted about them a while ago in my 11g Top New Features Series. You can read about DDL LOGGING and DDL LOCKING in 11g in my 11g posts. Thank [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=393&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://sysdba.files.wordpress.com/2007/12/soug_1_2008.jpg" title="soug_1_2008.jpg"></a>Today I have received a copy of</p>
<p><a href="http://sysdba.files.wordpress.com/2007/12/soug_1_2008.jpg" title="soug_1_2008.jpg"><img src="http://sysdba.files.wordpress.com/2007/12/soug_1_2008.thumbnail.jpg?w=450" alt="soug_1_2008.jpg" /></a> Swiss Oracle Usergroup&#8217;s Newsletter 1/2008.</p>
<p>It contains my article on some 11g New Features related to DDL.<br />
I had posted about them a while ago in my 11g Top New Features Series.</p>
<p>You can read about <a target="_blank" href="http://sysdba.wordpress.com/2007/10/16/ddd-logging-in-the-alert-log-in-11g/">DDL LOGGING</a> and <a target="_blank" href="http://sysdba.wordpress.com/2007/11/09/ddl-locking-in-oracle-11g/">DDL LOCKING</a> in 11g in my <a target="_blank" href="http://sysdba.wordpress.com/category/oracle-11g-features-posts/">11g posts</a>.</p>
<p>Thank you <a target="_blank" href="http://www.SOUG.ch">SOUG</a>!</p>
<p>=;-)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/393/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/393/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/393/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/393/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=393&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/12/28/article-on-oracle-11g-ddl-new-features-published/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/12/soug_1_2008.thumbnail.jpg" medium="image">
			<media:title type="html">soug_1_2008.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle Enterprise Linux Release 5 Update 1 available</title>
		<link>http://sysdba.wordpress.com/2007/12/11/oracle-enterprise-linux-release-5-update-1-available/</link>
		<comments>http://sysdba.wordpress.com/2007/12/11/oracle-enterprise-linux-release-5-update-1-available/#comments</comments>
		<pubDate>Tue, 11 Dec 2007 21:11:48 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/12/11/oracle-enterprise-linux-release-5-update-1-available/</guid>
		<description><![CDATA[On Dec. 3rd. Oracle has released Enterprise Linux Release 5 Update 1 Media Pack for x86_64 (64 bit) and x86_32(32 bit) for download on Edelivery<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=389&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>On Dec. 3rd. Oracle has released<br />
Enterprise Linux Release 5 Update 1 Media Pack<br />
for x86_64 (64 bit)<br />
and x86_32(32 bit)</p>
<p>for download <a target="_blank" href="http://edelivery.oracle.com/linux">on Edelivery</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/389/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/389/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/389/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=389&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/12/11/oracle-enterprise-linux-release-5-update-1-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>
	</item>
		<item>
		<title>Enterprise Manager 10.2.0.4 &amp; new agent versions available for download</title>
		<link>http://sysdba.wordpress.com/2007/12/10/enterprise-manager-10204-available-for-download/</link>
		<comments>http://sysdba.wordpress.com/2007/12/10/enterprise-manager-10204-available-for-download/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 13:59:18 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/12/10/enterprise-manager-10204-available-for-download/</guid>
		<description><![CDATA[As of Dec. 06th. 2007 the new Enterprise Manager version 10.2.0.4 is available in OTN and Edelivery. This patchset does not only contain bugfixes but also a number of NEW FEATURES . Here is an overview of the new features if you upgrade from 10.2.0.3: Provides data masking, that is the capability to replace sensitive data with false [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=388&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>As of Dec. 06th. 2007 the new Enterprise Manager version 10.2.0.4 is available in OTN and Edelivery.</p>
<p>This patchset does not only contain bugfixes but also a number of <a target="_blank" href="http://download.oracle.com/docs/cd/B16240_01/doc/relnotes.102/e10552/toc.htm#BGEBCEGA">NEW FEATURES</a> .</p>
<p>Here is an overview of the new features if you upgrade from 10.2.0.3:</p>
<ul>
<li>Provides data masking, that is the capability to replace sensitive data with false but realistic looking data on test and development databases.</li>
<li>Allows usage of commonly-used privileged delegation software, such as sudo or pbrun, to fit into the existing credential subsystem in Enterprise Manager.</li>
<li>Allows bidirectional flow of events between Enterprise Manager and third-party products.</li>
<li>Provides users through the Service Level Management Pack the capability to record transactions on Forms 6i-based applications and periodically replay these transactions to monitor performance and availability.</li>
<li>Provides DHTML transaction recording and monitoring features that allow you to record and playback DHTML-based applications. The features help you to capture mouse and keyboard actions, in addition to the HTTP requests.</li>
<li>Allows you to monitor and manage Oracle BI Suite Enterprise Edition (Maui release). You can discover Oracle BI EE servers, view configuration information, monitor performance, and so on.</li>
<li>Provides, through the Diagnostics Pack for Non-Oracle Middleware, Java Applications Diagnostics Expert (JADE) that allows you to diagnose performance problems in production Java applications with minimal performance overhead and without shutting down the applications.</li>
<li>Provides improved SOA management capabilities that enable you to automate the provisioning of BPEL Processes using the deployment procedures. Also ofers configuration management of BPEL Process Manager.</li>
<li>Provides out-of-box plug-in support for Microsoft Exchange targets. Allows you to monitor performance, availability, usage statistics, and administration of Exchange Servers.</li>
<li>Offers support for the following plug-ins:</li>
<li>
<ul>
<li>EMC CLARiiON System: You can view storage, configuration, and performance information for laying out best practices, analyzing performance bottlenecks, and resolving issues.</li>
<li>VMware ESX Server: You can monitor configuration and performance data of VMware ESX Server 3.</li>
<li>Microsoft SQL Server: You can access core administration capabilities.</li>
<li>IBM DB2 Database: You can monitor IBM DB2 Release 9.</li>
<li>EMC Symmetrix DMX System: Provides fixes for certain performance-related issues found in Reports and enhances its capability to function better in a larger environment that may consist of over 3000 disks.</li>
</ul>
</li>
</ul>
<p>You can download the versions for<br />
- <a target="_blank" href="http://www.oracle.com/technology/software/products/oem/htdocs/winsoft10g.html">WIN 32 bit<br />
</a>- <a target="_blank" href="http://www.oracle.com/technology/software/products/oem/htdocs/linuxsoft.html">Linux x86</a></p>
<p>The documentation is <a target="_blank" href="http://download.oracle.com/docs/cd/B16240_01/doc/relnotes.102/e10552/toc.htm#BGEBCEGA">here</a>.</p>
<p>Also there is a <a target="_blank" href="http://www.oracle.com/technology/software/products/oem/htdocs/agentsoft.html">new version of the agent</a> available for download for WIN 32 and Linux x68.</p>
<p>as well as a number of <a target="_blank" href="http://www.oracle.com/technology/software/products/oem/index.html">new PLUGINs for the OEM</a>.</p>
<p>=;-)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/388/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/388/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/388/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/388/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=388&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/12/10/enterprise-manager-10204-available-for-download/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>
	</item>
		<item>
		<title>NetApp fully HARD Complient</title>
		<link>http://sysdba.wordpress.com/2007/11/28/netapp-fully-hard-complient/</link>
		<comments>http://sysdba.wordpress.com/2007/11/28/netapp-fully-hard-complient/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 21:33:56 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/11/28/netapp-fully-hard-complient/</guid>
		<description><![CDATA[Last week NetApp announced that it was the only company which is fully complient with Oracle&#8217;s HARD-Initiative for the prevention of data corrution on  NFS, FCP, and iSCSI protocols with its Snapvalidator software. This software validates a checksum which Oracle created for a buffer before it started writing it to disk. If the checksum of the block [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=387&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Last week <a target="_blank" href="http://www.netapp.com/">NetApp</a> <a target="_blank" href="http://www.netapp.com/news/press/news_rel_20071120">announced </a>that it was the only company which is fully complient with <a target="_blank" href="http://www.oracle.com/technology/deploy/availability/htdocs/hard.html">Oracle&#8217;s HARD-Initiative</a> for the prevention of data corrution on  NFS, FCP, and iSCSI protocols with its <a target="_blank" href="http://www.netapp.com/products/enterprise-software/storage-system-software/resiliency/snapvalidator.html">Snapvalidator</a> software.</p>
<p>This software validates a checksum which Oracle created for a buffer before it started writing it to disk. If the checksum of the block which NetApp is to write to the storage is not the same than the one Oracle has produced Snapvalidator creates an error message and prevents the data from being written to the storage.</p>
<p>Only with such a check we can be sure that exactly what we sent from the buffer cache is what arrives on disk in the end.</p>
<p>Let&#8217;s test it!</p>
<p>=;-)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/387/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/387/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/387/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/387/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=387&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/11/28/netapp-fully-hard-complient/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>
	</item>
		<item>
		<title>sysdba @ CERNs CMS experiment</title>
		<link>http://sysdba.wordpress.com/2007/11/26/sysdba-cerns-cms-experiment/</link>
		<comments>http://sysdba.wordpress.com/2007/11/26/sysdba-cerns-cms-experiment/#comments</comments>
		<pubDate>Mon, 26 Nov 2007 20:48:20 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[CERN]]></category>
		<category><![CDATA[my journeys]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/11/26/sysdba-cerns-cms-experiment/</guid>
		<description><![CDATA[Today I had the chance to visit CMS one of the experiments @ CERN. Anton Topurov had organized it for me. Thanks a lot Anton! This was one of the most imresssing sites I have ever visited! I am very glad that I could see it before it is started and nobody can visit it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=385&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Today I had the chance to visit <a href="http://cms.cern.ch" target="_blank">CMS</a> one of the experiments @ <a href="http://www.cern.ch" target="_blank">CERN</a>.<br />
Anton Topurov had organized it for me.<br />
Thanks a lot Anton! This was one of the most imresssing sites I have ever visited!<br />
I am very glad that I could see it before it is started and nobody can visit it any more!</p>
<p>Here are a few impressions:</p>

<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/385/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/385/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/385/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=385&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/11/26/sysdba-cerns-cms-experiment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>
	</item>
		<item>
		<title>Cern testing 10.2.0.4 features</title>
		<link>http://sysdba.wordpress.com/2007/11/26/cern-testing-10204-features/</link>
		<comments>http://sysdba.wordpress.com/2007/11/26/cern-testing-10204-features/#comments</comments>
		<pubDate>Mon, 26 Nov 2007 20:24:51 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[CERN]]></category>
		<category><![CDATA[my special courses]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/11/26/cern-testing-10204-features/</guid>
		<description><![CDATA[Last week I deliver another specially condensed training for CERN. Again I had a very strong group od DBAs who gave me a hard time with their questions.   Elzbieta Gajewska  is an outstandingly fast learning young computer scientist from Poland. She was already in my RAC course a few months ago.  And again she asked [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=382&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://sysdba.files.wordpress.com/2007/11/anton_topurov.jpg" title="anton_topurov.jpg"></a>Last week I deliver another specially condensed training for CERN. Again I had a very strong group od DBAs who gave me a hard time with their questions.</p>
<p> <a href="http://sysdba.files.wordpress.com/2007/11/ela.jpg" title="ela.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/ela.thumbnail.jpg?w=450" alt="ela.jpg" /></a> Elzbieta Gajewska <br />
is an outstandingly fast learning young computer scientist from Poland. She was already in my RAC course a few months ago.  And again she asked me brilliant questions, some of  them could be good for challenging the Oaktable Network.</p>
<p>Some of the delegates are already taking part in the second class from me. It is always fun to deliver a course for CERN since it is never boring since these people are so highly motivated.</p>
<p>And again I met Anton Topurov <a href="http://sysdba.files.wordpress.com/2007/11/anton_topurov.jpg" title="anton_topurov.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/anton_topurov.thumbnail.jpg?w=450" alt="anton_topurov.jpg" /></a><br />
who is already testing with 11g in CERN and has also the Beta Version of the yet to come soon 10.2.0.4. patch already. But he does not talk about it yet. <br />
He also was in my RAC class recently.</p>
<p>I am very greateful that he has managed to get me into a group of people who can visit the CMS experiment.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/382/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/382/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/382/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/382/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=382&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/11/26/cern-testing-10204-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/ela.thumbnail.jpg" medium="image">
			<media:title type="html">ela.jpg</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/anton_topurov.thumbnail.jpg" medium="image">
			<media:title type="html">anton_topurov.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle VM sources</title>
		<link>http://sysdba.wordpress.com/2007/11/19/oracle-vm-sources/</link>
		<comments>http://sysdba.wordpress.com/2007/11/19/oracle-vm-sources/#comments</comments>
		<pubDate>Mon, 19 Nov 2007 08:21:45 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/11/19/oracle-vm-sources/</guid>
		<description><![CDATA[This is a compilation of relevant links related with Oracle VM: Download sources Oracle Virtualization Homepage Official Discussion Forum for VM Documentation for VM VM Wiki Pre Configured Templates FAQ Podcast with Kurt Hackel (Oracle VM Architect) I have asked Wim Coekaerts  during his Meet the Experts session in the OTN lounge last week at the OOW about [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=380&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>This is a compilation of relevant links related with Oracle VM:</p>
<p><a target="_blank" href="http://edelivery.oracle.com/oraclevm">Download sources</a></p>
<p><a target="_blank" href="http://www.oracle.com/technologies/virtualization/index.html">Oracle Virtualization Homepage</a></p>
<p><a target="_blank" href="http://forums.oracle.com/forums/forum.jspa?forumID=482">Official Discussion Forum for VM</a></p>
<p><a target="_blank" href="http://www.oracle.com/technology/tech/virtualization/index.html">Documentation for VM</a></p>
<p><a target="_blank" href="http://wiki.oracle.com/page/Oracle+VM?t=anon">VM Wiki</a></p>
<p><a target="_blank" href="http://www.oracle.com/technology/software/products/virtualization/vm_templates.html">Pre Configured Templates</a></p>
<p><a target="_blank" href="http://www.oracle.com/technologies/virtualization/docs/ovm-faq.pdf">FAQ</a></p>
<p><a target="_blank" href="http://feeds.feedburner.com/~r/OTN_TechCasts/~3/185011395/6084482.mp3">Podcast with Kurt Hackel</a> (Oracle VM Architect)</p>
<p>I have asked <a target="_blank" href="http://blogs.oracle.com/wim/">Wim Coekaerts</a> <a href="http://sysdba.files.wordpress.com/2007/11/wim.jpg" title="wim.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/wim.thumbnail.jpg?w=450" alt="wim.jpg" /></a> during his <em>Meet the Experts session</em><br />
in the OTN lounge last week at the OOW about trainings on Oracle VM.  He said that there will be new courses on this available soon from Oracle University.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/380/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/380/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/380/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/380/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=380&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/11/19/oracle-vm-sources/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/wim.thumbnail.jpg" medium="image">
			<media:title type="html">wim.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>DOAG News arrived</title>
		<link>http://sysdba.wordpress.com/2007/11/18/doag-news/</link>
		<comments>http://sysdba.wordpress.com/2007/11/18/doag-news/#comments</comments>
		<pubDate>Sun, 18 Nov 2007 19:40:18 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[my articles]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/11/18/doag-news/</guid>
		<description><![CDATA[When I came home from San Francisco I found the latest DOAG NEWS   4/2007 in my mailbox. It contains the German version of my article on 11g New Features of the Cost Based Optimizer. The DOAG (Deutsche Oracle Anwender Gruppe) is the German Oracle user group which celebrates its 20 aniversary this year. Congratulations [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=378&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>When I came home from San Francisco I found</p>
<p>the latest DOAG NEWS <a href="http://sysdba.files.wordpress.com/2007/11/doag_news.jpg" title="doag_news.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/doag_news.thumbnail.jpg?w=450" alt="doag_news.jpg" /></a>  4/2007 in my mailbox.<br />
It contains the German version of my article on 11g New Features of the Cost Based Optimizer.</p>
<p>The DOAG (Deutsche Oracle Anwender Gruppe) is the German Oracle user group which celebrates its 20 aniversary this year.</p>
<p>Congratulations DOAG!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/378/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/378/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/378/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/378/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=378&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/11/18/doag-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/doag_news.thumbnail.jpg" medium="image">
			<media:title type="html">doag_news.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>No AUTO RESULT_CACHE_MODE!!!</title>
		<link>http://sysdba.wordpress.com/2007/11/15/no-auto-result_cache_mode/</link>
		<comments>http://sysdba.wordpress.com/2007/11/15/no-auto-result_cache_mode/#comments</comments>
		<pubDate>Thu, 15 Nov 2007 16:16:17 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/11/15/no-auto-result_cache_mode/</guid>
		<description><![CDATA[I have recently posted about the result cache feature in 11g. I have recceived a number of comments on this post by Peter about the AUTO mode of the parameter who asked if it really works because he had tewsted and did not find the result he had expected. This made me test as well [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=377&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I have <a target="_blank" href="http://sysdba.wordpress.com/2007/09/11/my-top-10-oracle-11g-new-features-part-4-the-sql-query-result-cache/">recently posted about the result cache feature in 11g</a>.</p>
<p>I have recceived <a target="_blank" href="http://sysdba.wordpress.com/2007/09/11/my-top-10-oracle-11g-new-features-part-4-the-sql-query-result-cache/#comment-5517">a number of comments on this post by Peter </a>about the AUTO mode of the parameter who asked if it really works because he had tewsted and did not find the result he had expected. This made me test as well and I had the same experience as Peter.</p>
<p>So I went to the demo ground here at the OOW yesterday and asked the guys from Server Technologies directly what the algorithm used is and received a surprising answer:</p>
<p>They told me that only MANUAL and FORCE are supported settings for the parameter. <font color="#ff0000">AUTO is neither documented nor supported!!!!</font></p>
<p>I asked them why it is possible to set the parameter to AUTO in the Enterprise manager and also there is an error message telling me this:</p>
<p><font color="#0000ff">SYS AS SYSDBA @ ocrl11 SQL&gt; show parameter result_cache</font></p>
<h6>NAME                                 TYPE        VALUE<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
client_result_cache_lag              big integer 3000<br />
client_result_cache_size             big integer 0<br />
result_cache_max_result              integer     5<br />
result_cache_max_size                big integer 1280K<br />
result_cache_mode                    string      MANUAL<br />
result_cache_remote_expiration       integer     0<br />
 </h6>
<p><font color="#0000ff">SYS AS SYSDBA @ ocrl11 SQL&gt; alter system set result_cache_mode=</font><font color="#ff0000">nonsense;<br />
</font>alter system set result_cache_mode=nonsense<br />
*<br />
ERROR at line 1:<br />
<font color="#ff0000">ORA-00096:</font> invalid value NONSENSE for parameter result_cache_mode, <font color="#0000ff">must be from among FORCE, MANUAL,</font> <font color="#ff0000">AUTO</font></p>
<p>And as Peter has found out: IT DOES NOT WORK WITH AUTO obviousely!<br />
Very good catch Peter!</p>
<p>The guys from Server Technologies told me that it will probably never work and will never be supported with AUTO. And if I think it over it is not bad to manually control which statements are cached and which not.</p>
<p>=;-)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/377/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/377/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/377/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=377&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/11/15/no-auto-result_cache_mode/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle Virtualization Server is downloadable now!</title>
		<link>http://sysdba.wordpress.com/2007/11/14/oracle-virtualization-server-is-downloadable-now/</link>
		<comments>http://sysdba.wordpress.com/2007/11/14/oracle-virtualization-server-is-downloadable-now/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 22:20:34 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Oracle 11g features posts]]></category>
		<category><![CDATA[Oracle Open World 2007]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/11/14/oracle-virtualization-server-is-downloadable-now/</guid>
		<description><![CDATA[It is out for download now: http://www.oracle.com/technology/tech/virtualization/index.html?rssid=rss_otn_news Virtualization Technology Center Virtualization is the process of abstracting computing resources such that multiple operating system and application images can share a single physical server, bringing significant cost-of-ownership and manageability benefits. Through its Oracle VM product, Oracle offers scalable, low-cost server virtualization for heterogeneous applications.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=376&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>It is out for download now:</p>
<p><a href="http://www.oracle.com/technology/tech/virtualization/index.html?rssid=rss_otn_news">http://www.oracle.com/technology/tech/virtualization/index.html?rssid=rss_otn_news</a></p>
<table border="0" width="100%" cellPadding="0" cellSpacing="0" style="height:0;">
<tr>
<td width="100%"><img width="1" src="http://www.oracle.com/portalimages/pobtrans.gif" height="1" /></td>
</tr>
</table>
<table border="0" width="100%" cellPadding="0" cellSpacing="0">
<tr>
<td width="100%" vAlign="top">
<table border="0" width="100%" cellPadding="0" cellSpacing="0" style="height:0;">
<tr align="left">
<td width="100%" vAlign="top" style="padding:0;">
<table border="0" width="100%" cellPadding="0" cellSpacing="5">
<tr align="left" vAlign="top">
<td colSpan="2"><img vspace="5" align="left" src="http://www.oracle.com/technology/tech/virtualization/virtualization-tech-center.gif" hspace="10" /></p>
<h1>Virtualization Technology Center</h1>
<p class="bodycopy">Virtualization is the process of abstracting computing resources such that multiple operating system and application images can share a single physical server, bringing significant cost-of-ownership and manageability benefits. Through its Oracle VM product, Oracle offers scalable, low-cost server virtualization for heterogeneous applications.</p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/376/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/376/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/376/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=376&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/11/14/oracle-virtualization-server-is-downloadable-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://www.oracle.com/portalimages/pobtrans.gif" medium="image" />

		<media:content url="http://www.oracle.com/technology/tech/virtualization/virtualization-tech-center.gif" medium="image" />
	</item>
		<item>
		<title>my presentation on OOW: how to migrate a DB from FS into ASM</title>
		<link>http://sysdba.wordpress.com/2007/11/14/my-presentation-on-oow-how-to-migrate-a-db-from-fs-into-asm/</link>
		<comments>http://sysdba.wordpress.com/2007/11/14/my-presentation-on-oow-how-to-migrate-a-db-from-fs-into-asm/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 16:46:24 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/11/14/my-presentation-on-oow-how-to-migrate-a-db-from-fs-into-asm/</guid>
		<description><![CDATA[I will deliver a presentation today in the uncoference area next to OTN lounge. Topic: How to migrate a DB from file system in to ASM storage Time: 5:00 pm Location: uncoference overlook II @ Moscone West Level 3 (next to OTN lounge)  It will be life demo with open end Q&#38;A. Borders bookstore just [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=373&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://sysdba.files.wordpress.com/2007/11/unconf_02.jpg" title="unconf_02.jpg"></a><a href="http://sysdba.files.wordpress.com/2007/11/unconf.jpg" title="unconf.jpg"></a>I will deliver a <a target="_blank" href="http://wiki.oracle.com/page/How+to+move+a+DB+from+fs+into+ASM+storage">presentation today in the uncoference area</a> next to OTN lounge.</p>
<p><a href="http://sysdba.files.wordpress.com/2007/11/unconf.jpg" title="unconf.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/unconf.thumbnail.jpg?w=450" alt="unconf.jpg" /></a><br />
Topic: How to migrate a DB from file system in to ASM storage<br />
Time: 5:00 pm<br />
Location: uncoference overlook II @ Moscone West Level 3 (next to OTN lounge)</p>
<p> It will be life demo with open end Q&amp;A.</p>
<p><font color="#0000ff">Borders bookstore</font> just provided me with <font color="#ff0000">two copies of the new book on ASM</font><br />
<font color="#0000ff">which I will raffle at my little presentation today</font>.</p>
<p><a target="_blank" href="http://www.mhprofessional.com/product.php?isbn=0071496076">Oracle Automatic Storage Management</a> <a href="http://sysdba.files.wordpress.com/2007/11/asm_book.jpg" title="asm_book.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/asm_book.thumbnail.jpg?w=450" alt="asm_book.jpg" /></a> by Nitin Vengurlekar, Murali Vallath &amp; Richard Long</p>
<p>Good luck!</p>
<p>Looking forward to meeting you all there</p>
<p>=;-)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/373/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/373/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/373/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=373&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/11/14/my-presentation-on-oow-how-to-migrate-a-db-from-fs-into-asm/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/unconf.thumbnail.jpg" medium="image">
			<media:title type="html">unconf.jpg</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/asm_book.thumbnail.jpg" medium="image">
			<media:title type="html">asm_book.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>New book on 11g ASM published</title>
		<link>http://sysdba.wordpress.com/2007/11/14/new-book-on-11g-asm-published/</link>
		<comments>http://sysdba.wordpress.com/2007/11/14/new-book-on-11g-asm-published/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 03:16:30 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Books worth their money]]></category>
		<category><![CDATA[Oracle 11g features posts]]></category>
		<category><![CDATA[Oracle Open World 2007]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/11/14/new-book-on-11g-asm-published/</guid>
		<description><![CDATA[There are a couple of books on the market already which cover 11g features. As always many of them do not really cover a lot of the new features because everything is so new and the books were written under preasure. So the have the &#8220;COVERS 11g&#8221; on the cover but inside it is mostly [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=371&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://sysdba.files.wordpress.com/2007/11/asm_book.jpg" title="asm_book.jpg"></a>There are a couple of books on the market already which cover 11g features.<br />
As always many of them do not really cover a lot of the new features because everything is so new and the books were written under preasure. So the have the &#8220;COVERS 11g&#8221; on the cover but inside it is mostly 10g stuff.</p>
<p>Here is one which is a MUST READ for everybody who is interested how Automatic Storage Management (ASM) really works:<br />
<a target="_blank" href="http://www.mhprofessional.com/product.php?isbn=0071496076">Oracle Automatic Storage Management</a> <a href="http://sysdba.files.wordpress.com/2007/11/asm_book.jpg" title="asm_book.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/asm_book.thumbnail.jpg?w=450" alt="asm_book.jpg" /></a> <br />
What makes this book especially interesting is the fact that the authors are the Oracle developers of ASM themselves, Nitin Vengurlekar and  Richard Long, and Murali Vallath., the president of the RAC SIG,  plus the architect of the technology Bill Bridge who wrote the foreword for the book .</p>
<p>This book keeps its promises and covers the 10g and 11g features of ASM in detail.<br />
And it is an easy reader with a sence of humor:</p>
<p>&#8220;The ACD is a log that allows ASM to make atomic changes to multiple data structures. It is similar to the redo logs used by the Oracle RDBMS. Each instance gests a 42 MB chunk of the ACD. (As Douglas Adams explained in Hitchiker&#8217;s Guide to the Galary, &#8220;42&#8243; is the answer to the ultimate question of life, the Univese and Everything.) &#8230;</p>
<p> This is the way of reading I like!!</p>
<p>Thank you guys, I love it</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/371/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/371/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/371/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/371/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=371&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/11/14/new-book-on-11g-asm-published/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/asm_book.thumbnail.jpg" medium="image">
			<media:title type="html">asm_book.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Real Application Testing new features announced</title>
		<link>http://sysdba.wordpress.com/2007/11/14/real-application-testing-new-features-announced/</link>
		<comments>http://sysdba.wordpress.com/2007/11/14/real-application-testing-new-features-announced/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 02:51:02 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Oracle 11g features posts]]></category>
		<category><![CDATA[Oracle Open World 2007]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/11/14/real-application-testing-new-features-announced/</guid>
		<description><![CDATA[Leng Leng Tan announced in her presentation yesterday, that patchset 10.2.0.4 which will be available very soon!!! which will allow to mask sensitive data in a captured workload  so it is not possible to read the data in plain in the testing environment, but still run the workload for testing anyway. This will definitively make it more attractive for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=368&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://sysdba.files.wordpress.com/2007/11/mask_01.jpg" title="mask_01.jpg"></a><a href="http://sysdba.files.wordpress.com/2007/11/mask_02.jpg" title="mask_02.jpg"></a>Leng Leng Tan announced in her presentation yesterday, that<font color="#ff0000"><br />
patchset 10.2.0.4 which will be available very soon!!! <a href="http://sysdba.files.wordpress.com/2007/11/mask_02.jpg" title="mask_02.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/mask_02.thumbnail.jpg?w=450" alt="mask_02.jpg" /></a></font></p>
<p><font color="#ff0000"><br />
<font color="#000000">which will allow to <font color="#ff0000">mask sensitive data in a captured workload</font>  <a href="http://sysdba.files.wordpress.com/2007/11/mask_01.jpg" title="mask_01.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/mask_01.thumbnail.jpg?w=450" alt="mask_01.jpg" /></a><br />
</font><font color="#ff0000"><font color="#000000">so it is not possible to read the data in plain in the testing environment, but still run the workload for testing anyway. This will definitively make it more attractive for a number of customers to use <font color="#0000ff">Database Replay</font>, one of the <font color="#0000ff">Real Application Testing</font> (RAT) features in 11g. </font></font></p>
<p></font>Also <font color="#ff0000">it will be possible to capture a workload on a 10.2.0.4 database and run it on an 11g database for testing!!!</font></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/368/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/368/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/368/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=368&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/11/14/real-application-testing-new-features-announced/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/mask_02.thumbnail.jpg" medium="image">
			<media:title type="html">mask_02.jpg</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/mask_01.thumbnail.jpg" medium="image">
			<media:title type="html">mask_01.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Realtime SQL Monitoring with Enterprise Manager 11g</title>
		<link>http://sysdba.wordpress.com/2007/11/13/realtime-sql-monitoring-with-enterprise-manager-11g/</link>
		<comments>http://sysdba.wordpress.com/2007/11/13/realtime-sql-monitoring-with-enterprise-manager-11g/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 16:53:59 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Oracle 11g features posts]]></category>
		<category><![CDATA[Oracle Open World 2007]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/11/13/realtime-sql-monitoring-with-enterprise-manager-11g/</guid>
		<description><![CDATA[Oracle VP Leng Leng Tan  and two members of her team presented some highlights of the new OEM which is at the beta level at present. You can find details  for her OOW presentations and demos and other sources here. I want to share two of them:   The first is SQL Real Time Monitoring: With [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=367&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://sysdba.files.wordpress.com/2007/11/sql_monitor_01.jpg" title="sql_monitor_01.jpg"></a><a href="http://sysdba.files.wordpress.com/2007/11/sql_monitor_02.jpg" title="sql_monitor_02.jpg"></a><a href="http://sysdba.files.wordpress.com/2007/11/sql_monitor_021.jpg" title="sql_monitor_021.jpg"></a><a href="http://sysdba.files.wordpress.com/2007/11/sql_monitor_03.jpg" title="sql_monitor_03.jpg"></a><a href="http://sysdba.files.wordpress.com/2007/11/sql_monitor_04.jpg" title="sql_monitor_04.jpg"></a><a href="http://sysdba.files.wordpress.com/2007/11/sql_monitor_05.jpg" title="sql_monitor_05.jpg"></a>Oracle VP Leng Leng Tan <a href="http://sysdba.files.wordpress.com/2007/11/lang_lang.jpg" title="lang_lang.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/lang_lang.thumbnail.jpg?w=450" alt="lang_lang.jpg" /></a> and two members of her team presented some highlights of the new OEM which is at the beta level at present. You can find details  for her OOW presentations and demos and other sources <a target="_blank" href="http://www.oracle.com/enterprise_manager/oracle-openworld-2007.html">here</a>.</p>
<p>I want to share two of them:  <a href="http://sysdba.files.wordpress.com/2007/11/sql_monitor_01.jpg" title="sql_monitor_01.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/sql_monitor_01.thumbnail.jpg?w=450" alt="sql_monitor_01.jpg" /></a> The first is SQL Real Time Monitoring:<br />
With OEM 11g it is possible to monitor every sql statement in real time while it is running.</p>
<p><a href="http://sysdba.files.wordpress.com/2007/11/sql_monitor_02.jpg" title="sql_monitor_02.jpg"></a> We will soon have a graphical interface which we can use to monitor sql statements while they are running and can drill down into the statement&#8217;s steps <a href="http://sysdba.files.wordpress.com/2007/11/sql_monitor_021.jpg" title="sql_monitor_021.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/sql_monitor_021.thumbnail.jpg?w=450" alt="sql_monitor_021.jpg" /></a> <a href="http://sysdba.files.wordpress.com/2007/11/sql_monitor_03.jpg" title="sql_monitor_03.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/sql_monitor_03.thumbnail.jpg?w=450" alt="sql_monitor_03.jpg" /></a> <a href="http://sysdba.files.wordpress.com/2007/11/sql_monitor_04.jpg" title="sql_monitor_04.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/sql_monitor_04.thumbnail.jpg?w=450" alt="sql_monitor_04.jpg" /></a> <a href="http://sysdba.files.wordpress.com/2007/11/sql_monitor_05.jpg" title="sql_monitor_05.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/sql_monitor_05.thumbnail.jpg?w=450" alt="sql_monitor_05.jpg" /></a> </p>
<p>  and see which step takes how much DB-TIME and what does it consume: is it CPU is it I/O and so forth. This makes it very easy to find out which step needs tuning exactly. In the demo yesterday they executed a long runnig parallel select and showed how easy it is to find out which full table scan need tuning in order to improve the performance of teh entire statement.</p>
<p>This is a very cool feature!</p>
<p>My next post will be about Data masking for testing.<br />
=,-)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/367/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/367/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/367/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/367/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=367&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/11/13/realtime-sql-monitoring-with-enterprise-manager-11g/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/lang_lang.thumbnail.jpg" medium="image">
			<media:title type="html">lang_lang.jpg</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/sql_monitor_01.thumbnail.jpg" medium="image">
			<media:title type="html">sql_monitor_01.jpg</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/sql_monitor_021.thumbnail.jpg" medium="image">
			<media:title type="html">sql_monitor_021.jpg</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/sql_monitor_03.thumbnail.jpg" medium="image">
			<media:title type="html">sql_monitor_03.jpg</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/sql_monitor_04.thumbnail.jpg" medium="image">
			<media:title type="html">sql_monitor_04.jpg</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/sql_monitor_05.thumbnail.jpg" medium="image">
			<media:title type="html">sql_monitor_05.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle Enterise Manager 10.2.0.4 now available</title>
		<link>http://sysdba.wordpress.com/2007/11/13/oracle-enterise-manager-10204-now-available/</link>
		<comments>http://sysdba.wordpress.com/2007/11/13/oracle-enterise-manager-10204-now-available/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 06:49:25 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Oracle 11g features posts]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/11/13/oracle-enterise-manager-10204-now-available/</guid>
		<description><![CDATA[As of last week Enterprise Manager 10g Grid Control Release 4 (10.2.0.4) is available for Windows 32 bit and Linux 32 bit! Also the Agent is available for Win 32 and Linux X86 .<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=359&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>As of last week Enterprise Manager 10<em>g</em> Grid Control Release 4 (10.2.0.4) is available for <a target="_blank" href="http://www.oracle.com/technology/software/products/oem/htdocs/winsoft10g.html">Windows 32 bit</a> and <a target="_blank" href="http://www.oracle.com/technology/software/products/oem/htdocs/linuxsoft.html">Linux 32 bit</a>!<br />
Also the Agent is available for <a target="_blank" href="http://www.oracle.com/technology/software/products/oem/htdocs/agentsoft.html#10204">Win 32 and Linux X86</a> .</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/359/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/359/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/359/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/359/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=359&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/11/13/oracle-enterise-manager-10204-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle 11g for HP, SUN Solaris &amp; AIX available</title>
		<link>http://sysdba.wordpress.com/2007/11/13/oracle-11g-for-hp-sun-solaris-aix-available/</link>
		<comments>http://sysdba.wordpress.com/2007/11/13/oracle-11g-for-hp-sun-solaris-aix-available/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 06:44:49 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Oracle 11g features posts]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/11/13/oracle-11g-for-hp-sun-solaris-aix-available/</guid>
		<description><![CDATA[Oracle 11g database is now available for the following platforms: Microsoft Windows (32-bit) (1.7 GB)  Microsoft Windows (x64) (1.7 GB) Linux x86 (1.7 GB) Linux x86-64 (1.8 GB) Solaris (SPARC) (64-bit) (1.9 GB) AIX (PPC64) Disk 1, Disk 2 (2.3 GB)  HP-UX Itanium Disk 1, Disk 2 (2.3 GB)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=358&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Oracle 11g database is now available for the following platforms:</p>
<p><a name="win32database" title="win32database" class="boldbodylink"></a>Microsoft Windows (32-bit) (1.7 GB) <br />
<a name="win64database" title="win64database" class="boldbodylink"></a>Microsoft Windows (x64) (1.7 GB)<br />
<a name="linuxdatabase" title="linuxdatabase" class="boldbodylink"></a>Linux x86 (1.7 GB)<br />
<a name="linuxx8664database" title="linuxx8664database" class="boldbodylink"></a>Linux x86-64 (1.8 GB)<br />
<a name="sol64database" title="sol64database" class="boldbodylink"></a>Solaris (SPARC) (64-bit) (1.9 GB)<br />
<a name="aix64database_disk1" title="aix64database_disk1" class="boldbodylink"></a>AIX (PPC64) Disk 1, <a name="aix64database_disk2" title="aix64database_disk2" class="boldbodylink"></a>Disk 2 (2.3 GB) <br />
<a name="hpidatabase_disk1" title="hpidatabase_disk1" class="boldbodylink"></a>HP-UX Itanium Disk 1, <a name="hpidatabase_disk2" title="hpidatabase_disk2" class="boldbodylink"></a>Disk 2 (2.3 GB)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/358/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/358/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/358/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/358/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=358&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/11/13/oracle-11g-for-hp-sun-solaris-aix-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle Virtual Server for download</title>
		<link>http://sysdba.wordpress.com/2007/11/13/oracle-virtual-server-for-download/</link>
		<comments>http://sysdba.wordpress.com/2007/11/13/oracle-virtual-server-for-download/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 06:37:14 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Oracle 11g features posts]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/11/13/oracle-virtual-server-for-download/</guid>
		<description><![CDATA[Tonight I was at a session with Wim Coekaerts who is responsible for all Linux related stuff at Oracle. He is also the project leader for the Oracle Virtual Server. Wim told me that the software for the OVS will be available for download latest Thursday this week (Nov. 15th. 2007). I asked him whether OVS is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=356&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Tonight I was at a session with <a href="http://blogs.oracle.com/wim/">Wim Coekaerts</a> <a href="http://sysdba.files.wordpress.com/2007/11/wim01.jpg" title="wim01.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/wim01.thumbnail.jpg?w=450" alt="wim01.jpg" /></a><br />
who is responsible for all Linux related stuff at Oracle.<br />
He is also the project leader for the Oracle Virtual Server.</p>
<p>Wim told me that the software for the OVS will be<br />
available for download latest Thursday this week (Nov. 15th. 2007).</p>
<p>I asked him whether OVS is zertified for RAC and he said<br />
that it is not right now but it will be soon, sometime beginning next year.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/356/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/356/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/356/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=356&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/11/13/oracle-virtual-server-for-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/wim01.thumbnail.jpg" medium="image">
			<media:title type="html">wim01.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle Virtualization Server unvailed today</title>
		<link>http://sysdba.wordpress.com/2007/11/13/oracle-virtualization-server-unvailed-today/</link>
		<comments>http://sysdba.wordpress.com/2007/11/13/oracle-virtualization-server-unvailed-today/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 03:21:08 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Oracle 11g features posts]]></category>
		<category><![CDATA[Oracle Open World 2007]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/11/13/oracle-virtualization-server-unvailed-today/</guid>
		<description><![CDATA[Today Charles Phillips in his keynote  officially announced the availability of Oracle Virtualization Server. It is a virtualization server based on the opensource XEN technology. Already two hours after the announcement there was the first brilliant presentation about GRID &#38; Virtualization Server and its integration with Fusion Middleware. delivered by Senior Director Pavana Jain. The software is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=349&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://sysdba.files.wordpress.com/2007/11/ovm_00.jpg" title="ovm_00.jpg"></a><a href="http://sysdba.files.wordpress.com/2007/11/ovm_01.jpg" title="ovm_01.jpg"></a><a href="http://sysdba.files.wordpress.com/2007/11/ovm_02.jpg" title="ovm_02.jpg"></a><a href="http://sysdba.files.wordpress.com/2007/11/ovm_03.jpg" title="ovm_03.jpg"></a><a href="http://sysdba.files.wordpress.com/2007/11/ovm_04.jpg" title="ovm_04.jpg"></a><a href="http://sysdba.files.wordpress.com/2007/11/ovm_05.jpg" title="ovm_05.jpg"></a>Today Charles Phillips in his keynote  <a target="_blank" href="http://www.oracle.com/corporate/press/2007_nov/ovm-ga-111107.html">officially announced </a>the availability of <a target="_blank" href="http://www.oracle.com/technologies/virtualization/index.html">Oracle Virtualization Server</a>.<br />
It is a virtualization server based on the opensource <a target="_blank" href="http://en.wikipedia.org/wiki/Xen">XEN technology</a>.<br />
Already two hours after the announcement there was the first brilliant presentation about GRID &amp; Virtualization Server and its integration with Fusion Middleware.<a href="http://sysdba.files.wordpress.com/2007/11/ovm_00.jpg" title="ovm_00.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/ovm_00.thumbnail.jpg?w=450" alt="ovm_00.jpg" /></a> delivered by Senior Director Pavana Jain.</p>
<p>The software is not downloadable yet as far as I understood but will around soon as well.</p>
<p>Here are a few slides from the presentation:</p>
<p> <a href="http://sysdba.files.wordpress.com/2007/11/ovm_01.jpg" title="ovm_01.jpg"></a> <a href="http://sysdba.files.wordpress.com/2007/11/ovm_02.jpg" title="ovm_02.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/ovm_02.thumbnail.jpg?w=450" alt="ovm_02.jpg" /></a> <a href="http://sysdba.files.wordpress.com/2007/11/ovm_03.jpg" title="ovm_03.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/ovm_03.thumbnail.jpg?w=450" alt="ovm_03.jpg" /></a> <a href="http://sysdba.files.wordpress.com/2007/11/ovm_04.jpg" title="ovm_04.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/ovm_04.thumbnail.jpg?w=450" alt="ovm_04.jpg" /></a> <a href="http://sysdba.files.wordpress.com/2007/11/ovm_05.jpg" title="ovm_05.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/ovm_05.thumbnail.jpg?w=450" alt="ovm_05.jpg" /></a></p>
<p>With this technology it will be possible to store virtually everything in ASM storage and it is even possible to migrate running live VMs from one physical maschine to another one within minutes.</p>
<p>I cannot wait to test it!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/349/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/349/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/349/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/349/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=349&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/11/13/oracle-virtualization-server-unvailed-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/ovm_00.thumbnail.jpg" medium="image">
			<media:title type="html">ovm_00.jpg</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/ovm_02.thumbnail.jpg" medium="image">
			<media:title type="html">ovm_02.jpg</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/ovm_03.thumbnail.jpg" medium="image">
			<media:title type="html">ovm_03.jpg</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/ovm_04.thumbnail.jpg" medium="image">
			<media:title type="html">ovm_04.jpg</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/ovm_05.thumbnail.jpg" medium="image">
			<media:title type="html">ovm_05.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>@ the OTN lounge</title>
		<link>http://sysdba.wordpress.com/2007/11/12/the-otn-lounge/</link>
		<comments>http://sysdba.wordpress.com/2007/11/12/the-otn-lounge/#comments</comments>
		<pubDate>Mon, 12 Nov 2007 18:43:57 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/11/12/the-otn-lounge/</guid>
		<description><![CDATA[Right now I am sitting at the OTN lounge with Eddy Awad who is right now recording a Pod Cast with Laurent Schneider. OTN handed out T-shirts,. have a look, can you believe it? It is not even executable!!  &#8221;Its hearting my eyes&#8221; Laurent says There are a number of very intersting people here some of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=345&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://sysdba.files.wordpress.com/2007/11/tk_standing.jpg" title="tk_standing.jpg"></a>Right now I am sitting at the OTN lounge with Eddy Awad <a href="http://sysdba.files.wordpress.com/2007/11/eddy_laurent.jpg" title="eddy_laurent.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/eddy_laurent.thumbnail.jpg?w=450" alt="eddy_laurent.jpg" /></a></p>
<p>who is right now recording a Pod Cast with Laurent Schneider.</p>
<p>OTN handed out T-shirts,. have a look, can you believe it? It is not even executable!!</p>
<p><a href="http://sysdba.files.wordpress.com/2007/11/select.jpg" title="select.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/select.thumbnail.jpg?w=450" alt="select.jpg" /></a> &#8221;Its hearting my eyes&#8221; Laurent says</p>
<p>There are a number of very intersting people here some of them under cover as it looks like <a href="http://sysdba.files.wordpress.com/2007/11/tk_standing.jpg" title="tk_standing.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/tk_standing.thumbnail.jpg?w=450" alt="tk_standing.jpg" /></a> Tom will deliver an expert session this afternoon at the OTN lounge.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/345/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/345/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/345/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=345&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/11/12/the-otn-lounge/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/eddy_laurent.thumbnail.jpg" medium="image">
			<media:title type="html">eddy_laurent.jpg</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/select.thumbnail.jpg" medium="image">
			<media:title type="html">select.jpg</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/tk_standing.thumbnail.jpg" medium="image">
			<media:title type="html">tk_standing.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>OOW 2007 opened</title>
		<link>http://sysdba.wordpress.com/2007/11/11/oow-2007-opened/</link>
		<comments>http://sysdba.wordpress.com/2007/11/11/oow-2007-opened/#comments</comments>
		<pubDate>Sun, 11 Nov 2007 19:16:09 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/11/11/oow-2007-opened/</guid>
		<description><![CDATA[Today the Oracle Open World conference started in San Francisco. Here are a few impression of the Moscone Center from today:    Today in the evening Larry Ellison will deliver a key note and I hope that he will announce some intersting new features.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=341&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://sysdba.files.wordpress.com/2007/11/11112007015.jpg" title="11112007015.jpg"></a>Today the Oracle Open World conference started in San Francisco.</p>
<p>Here are a few impression of the Moscone Center from today:<br />
<a href="http://sysdba.files.wordpress.com/2007/11/11112007013.jpg" title="11112007013.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/11112007013.thumbnail.jpg?w=450" alt="11112007013.jpg" /></a> <a href="http://sysdba.files.wordpress.com/2007/11/11112007014.jpg" title="11112007014.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/11112007014.thumbnail.jpg?w=450" alt="11112007014.jpg" /></a> <a href="http://sysdba.files.wordpress.com/2007/11/11112007015.jpg" title="11112007015.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/11112007015.thumbnail.jpg?w=450" alt="11112007015.jpg" /></a></p>
<p>Today in the evening Larry Ellison will deliver a key note and<br />
I hope that he will announce some intersting new features.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/341/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/341/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/341/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/341/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=341&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/11/11/oow-2007-opened/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/11112007013.thumbnail.jpg" medium="image">
			<media:title type="html">11112007013.jpg</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/11112007014.thumbnail.jpg" medium="image">
			<media:title type="html">11112007014.jpg</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/11112007015.thumbnail.jpg" medium="image">
			<media:title type="html">11112007015.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Arrived in San Francisco</title>
		<link>http://sysdba.wordpress.com/2007/11/11/arrived-in-san-francisco/</link>
		<comments>http://sysdba.wordpress.com/2007/11/11/arrived-in-san-francisco/#comments</comments>
		<pubDate>Sun, 11 Nov 2007 08:25:14 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/11/11/arrived-in-san-francisco/</guid>
		<description><![CDATA[After a 15 hours trip from Zurich I have arrived in San Francisco for the Oracle Open World Conference. This time I had chosen US Airways and UA which was much better then my last trip which was with AA and Delta and which was a torture. When I was on the way from the airplane [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=339&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>After a 15 hours trip from Zurich I have arrived in San Francisco for the Oracle Open World Conference.</p>
<p>This time I had chosen US Airways and UA which was much better then my last trip which was with AA and Delta and which was a torture.</p>
<p>When I was on the way from the airplane to the baggage all of a sudden my cellphone was ringing.<br />
<a href="http://sysdba.files.wordpress.com/2007/11/10112007015.jpg" title="10112007015.jpg"><img src="http://sysdba.files.wordpress.com/2007/11/10112007015.thumbnail.jpg?w=450" alt="10112007015.jpg" /></a>  It was Laurent Schneider who called me <br />
and told me that he was waiting for me at the exit with his coleague Daniel from LC SYSTEMS to pick me up and take me downtown for a nice dinner. What a nice surprise!</p>
<p>Tomorrow I will take part in the 11g Exam Cram and<br />
in the evening I will go to the ACE dinner.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/339/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/339/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/339/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=339&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/11/11/arrived-in-san-francisco/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>

		<media:content url="http://sysdba.files.wordpress.com/2007/11/10112007015.thumbnail.jpg" medium="image">
			<media:title type="html">10112007015.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>My top 10 Oracle 11g New Features Part 6: DDL locking in Oracle 11g</title>
		<link>http://sysdba.wordpress.com/2007/11/09/ddl-locking-in-oracle-11g/</link>
		<comments>http://sysdba.wordpress.com/2007/11/09/ddl-locking-in-oracle-11g/#comments</comments>
		<pubDate>Fri, 09 Nov 2007 06:50:39 +0000</pubDate>
		<dc:creator>Lutz Hartmann</dc:creator>
				<category><![CDATA[Oracle 11g features posts]]></category>

		<guid isPermaLink="false">http://sysdba.wordpress.com/2007/11/09/ddl-locking-in-oracle-11g/</guid>
		<description><![CDATA[In Oracle 11g there are some new features related to DDL-locking which can be very helpful. In previous releases a DDL statement always errors out respectively hangs in a hold if an exclusive lock (X) on a required resource is not available. Let’s have a look at a little example: The user HR looks a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=337&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>In Oracle 11g there are some new features related to DDL-locking which can be very helpful.</p>
<p>In previous releases a DDL statement always errors out respectively hangs in a hold if an exclusive lock (X) on a required resource is not available.</p>
<p>Let’s have a look at a little example:</p>
<p>The user HR looks a table in shared) mode by acquiring ROW LOCKS (RS) on 0 rows:</p>
<p><font color="#0000ff"><em>HR@orcl SQL&gt; select * from employees where 1=2 for update;</em></font></p>
<h6>no rows selected</h6>
<p>User SYSTEM tries to acquire an EXLUSIVE LOCK (X) on the table:<br />
<font color="#0000ff"><em>SYSTEM@orcl SQL&gt; LOCK TABLE hr.employees IN EXCLUSIVE MODE;</em></font></p>
<p>Here SYSTEM will wait until the shared table lock is released by HR although there are no rows locked explicitly!!! The SELECT FOR UPDATE does not only lock rows explicitly but also requires a shared table lock.</p>
<p>Already in 10g it was possible to specify NOWAIT in order not to hang in a hold situation but to let the statement error out immediately:</p>
<p><font color="#0000ff"><em>SYSTEM@orcl SQL&gt; LOCK TABLE hr.employees IN EXCLUSIVE MODE NOWAIT;</em></font></p>
<h6><font color="#ff0000">*ERROR at line 1:ORA-00054:<br />
resource busy and acquire with NOWAIT specified or timeout expired</font> </h6>
<p>As of Oracle 11g it is possible to specify a timeout period for which a lock request should wait before erroring out. This can be very helpful because it is very likely that just a few seconds later the EXCLUSIVE ENQUEUE might be available. We now have the chance to wait for it before the DDL statement fails:</p>
<p><font color="#0000ff"><em>SYSTEM@orcl SQL&gt; LOCK TABLE hr.employees IN EXCLUSIVE MODE WAIT 10;</em></font></p>
<h6>ERROR at line 1:ORA-00054: resource busy and acquire with NOWAIT specified or timeout expired</h6>
<p>Here the DDL statement errors out only after 10 seconds if the requested lock is still not available!</p>
<p>Forthermore <font color="#0000ff">Shared exclusive locks (SRX)</font> have been improved in Oracle database 11g.<br />
They are used now instead of <font color="#0000ff">Exclusive locks (X)</font> for the following operations:<br />
-          CREATE INDEX ONLINE<br />
-          CREATE MATARIALIZED VIEW LOG<br />
-          ALTER TABLE ENABLE CONSTRAINT  NOVALIDATE<br />
In 11 g transactions can be active and hold implicit (RX) or explicit (RS) row locks on a segment which is undergoing one of the above mentioned operations. This can reduce wait times in highly concurrent configurations for example for rebuilding online indexes.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sysdba.wordpress.com/337/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sysdba.wordpress.com/337/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sysdba.wordpress.com/337/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sysdba.wordpress.com/337/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysdba.wordpress.com&#038;blog=849491&#038;post=337&#038;subd=sysdba&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sysdba.wordpress.com/2007/11/09/ddl-locking-in-oracle-11g/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aaf6f22395accceee983425149471200?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sysdba</media:title>
		</media:content>
	</item>
	</channel>
</rss>
