<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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: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>Comments on: TO Locks</title>
	<atom:link href="http://jonathanlewis.wordpress.com/2010/02/19/to-locks/feed/" rel="self" type="application/rss+xml" />
	<link>http://jonathanlewis.wordpress.com/2010/02/19/to-locks/</link>
	<description>Just another Oracle weblog</description>
	<lastBuildDate>Mon, 20 May 2013 17:10:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: The_Duck</title>
		<link>http://jonathanlewis.wordpress.com/2010/02/19/to-locks/#comment-41734</link>
		<dc:creator><![CDATA[The_Duck]]></dc:creator>
		<pubDate>Sat, 17 Sep 2011 17:14:38 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/?p=3125#comment-41734</guid>
		<description><![CDATA[disable trigger mdsys.SDO_GEOR_ERR_TRIGGER]]></description>
		<content:encoded><![CDATA[<p>disable trigger mdsys.SDO_GEOR_ERR_TRIGGER</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Blogroll Report 12/02/2009 – 19/02/2010 &#171; Coskan&#8217;s Approach to Oracle</title>
		<link>http://jonathanlewis.wordpress.com/2010/02/19/to-locks/#comment-35797</link>
		<dc:creator><![CDATA[Blogroll Report 12/02/2009 – 19/02/2010 &#171; Coskan&#8217;s Approach to Oracle]]></dc:creator>
		<pubDate>Thu, 18 Mar 2010 16:44:49 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/?p=3125#comment-35797</guid>
		<description><![CDATA[[...] 15-Unusual temporary object (TO) locks when spatial is installed Jonathan Lewis-TO Locks [...]]]></description>
		<content:encoded><![CDATA[<p>[...] 15-Unusual temporary object (TO) locks when spatial is installed Jonathan Lewis-TO Locks [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Venzi</title>
		<link>http://jonathanlewis.wordpress.com/2010/02/19/to-locks/#comment-35557</link>
		<dc:creator><![CDATA[Venzi]]></dc:creator>
		<pubDate>Sun, 21 Feb 2010 00:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/?p=3125#comment-35557</guid>
		<description><![CDATA[Hi Jonathan,

Ah ok I understand!

Thanks very much,

Venzi]]></description>
		<content:encoded><![CDATA[<p>Hi Jonathan,</p>
<p>Ah ok I understand!</p>
<p>Thanks very much,</p>
<p>Venzi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Lewis</title>
		<link>http://jonathanlewis.wordpress.com/2010/02/19/to-locks/#comment-35554</link>
		<dc:creator><![CDATA[Jonathan Lewis]]></dc:creator>
		<pubDate>Sat, 20 Feb 2010 20:46:07 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/?p=3125#comment-35554</guid>
		<description><![CDATA[Venzi,

I&#039;ve just done a quick check in 11.1.0.6.
The table is of duration &quot;SYS$SESSION&quot;, i.e. it&#039;s &quot;on commit preserve rows&quot;. 

This means the temporary extent your session has been assigned for the table will only be released when your session ends, or when you issue &quot;truncate table ...&quot;.

The TO lock disappeared when I executed:
[sourcecode]
truncate table mdsys.SDO_GEOR_DDL__TABLE$$;
[/sourcecode]]]></description>
		<content:encoded><![CDATA[<p>Venzi,</p>
<p>I&#8217;ve just done a quick check in 11.1.0.6.<br />
The table is of duration &#8220;SYS$SESSION&#8221;, i.e. it&#8217;s &#8220;on commit preserve rows&#8221;. </p>
<p>This means the temporary extent your session has been assigned for the table will only be released when your session ends, or when you issue &#8220;truncate table &#8230;&#8221;.</p>
<p>The TO lock disappeared when I executed:</p>
<pre class="brush: plain; title: ; notranslate">
truncate table mdsys.SDO_GEOR_DDL__TABLE$$;
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Venzi</title>
		<link>http://jonathanlewis.wordpress.com/2010/02/19/to-locks/#comment-35540</link>
		<dc:creator><![CDATA[Venzi]]></dc:creator>
		<pubDate>Fri, 19 Feb 2010 18:56:15 +0000</pubDate>
		<guid isPermaLink="false">http://jonathanlewis.wordpress.com/?p=3125#comment-35540</guid>
		<description><![CDATA[Hi Jonathan,

I know exactly what you&#039;re talking about:

Installing it the default way no matter what gets installed just get it up and running - the [Next] button is your friend! And then you have a lot of things going on in the background which you won&#039;t need.

But I have one question here: When gets the lock released? As drop table is a DDL statement there happens an implicit commit, right? So is Oracle Spatial taking care of the lock release?]]></description>
		<content:encoded><![CDATA[<p>Hi Jonathan,</p>
<p>I know exactly what you&#8217;re talking about:</p>
<p>Installing it the default way no matter what gets installed just get it up and running &#8211; the [Next] button is your friend! And then you have a lot of things going on in the background which you won&#8217;t need.</p>
<p>But I have one question here: When gets the lock released? As drop table is a DDL statement there happens an implicit commit, right? So is Oracle Spatial taking care of the lock release?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
