<?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/"
		>
<channel>
	<title>Comments on: Edition-Based Redefinition</title>
	<atom:link href="http://antognini.ch/2010/01/edition-based-redefinition/feed/" rel="self" type="application/rss+xml" />
	<link>http://antognini.ch/2010/01/edition-based-redefinition/</link>
	<description></description>
	<lastBuildDate>Fri, 27 Jan 2012 07:31:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Online deployments or Oracle&#8217;s warm welcome of the 21st century, perhaps better known as Edition-Based Redefinition (EBR for short) &#171; tns-0</title>
		<link>http://antognini.ch/2010/01/edition-based-redefinition/comment-page-1/#comment-36629</link>
		<dc:creator>Online deployments or Oracle&#8217;s warm welcome of the 21st century, perhaps better known as Edition-Based Redefinition (EBR for short) &#171; tns-0</dc:creator>
		<pubDate>Fri, 30 Sep 2011 23:13:25 +0000</pubDate>
		<guid isPermaLink="false">http://antognini.ch/?p=836#comment-36629</guid>
		<description>[...] Christian Antognini’s EBR article  [...]</description>
		<content:encoded><![CDATA[<p>[...] Christian Antognini’s EBR article  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlie Yi 木匠</title>
		<link>http://antognini.ch/2010/01/edition-based-redefinition/comment-page-1/#comment-7554</link>
		<dc:creator>Charlie Yi 木匠</dc:creator>
		<pubDate>Thu, 04 Feb 2010 23:47:19 +0000</pubDate>
		<guid isPermaLink="false">http://antognini.ch/?p=836#comment-7554</guid>
		<description>OK Chris,

Our deployment procedure will be:

1) roll in new version PL/SQL package and other database object changes.

2) change the DEFAULT_EDITION database property.

3) Application reconnect to database, (restart the connection pool).

Thanks,
Charlie</description>
		<content:encoded><![CDATA[<p>OK Chris,</p>
<p>Our deployment procedure will be:</p>
<p>1) roll in new version PL/SQL package and other database object changes.</p>
<p>2) change the DEFAULT_EDITION database property.</p>
<p>3) Application reconnect to database, (restart the connection pool).</p>
<p>Thanks,<br />
Charlie</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian Antognini</title>
		<link>http://antognini.ch/2010/01/edition-based-redefinition/comment-page-1/#comment-7551</link>
		<dc:creator>Christian Antognini</dc:creator>
		<pubDate>Thu, 04 Feb 2010 22:58:46 +0000</pubDate>
		<guid isPermaLink="false">http://antognini.ch/?p=836#comment-7551</guid>
		<description>Hi Charlie

The only way to change the session edition is to execute an ALTER SESSION statement or through the SET_EDITION_DEFERRED procedure in the DBMS_SESSION package.

However, to change the default edition at the database level, it is possible to change the DEFAULT_EDITION database property. It goes without saying that such a change do not impact connected sessions.

HTH
Chris</description>
		<content:encoded><![CDATA[<p>Hi Charlie</p>
<p>The only way to change the session edition is to execute an ALTER SESSION statement or through the SET_EDITION_DEFERRED procedure in the DBMS_SESSION package.</p>
<p>However, to change the default edition at the database level, it is possible to change the DEFAULT_EDITION database property. It goes without saying that such a change do not impact connected sessions.</p>
<p>HTH<br />
Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlie Yi 木匠</title>
		<link>http://antognini.ch/2010/01/edition-based-redefinition/comment-page-1/#comment-7545</link>
		<dc:creator>Charlie Yi 木匠</dc:creator>
		<pubDate>Thu, 04 Feb 2010 18:55:05 +0000</pubDate>
		<guid isPermaLink="false">http://antognini.ch/?p=836#comment-7545</guid>
		<description>Please correct me if I&#039;m wrong. So that means we cannot change other session&#039;s Edition online.
We either use application to send the &quot;ALTER SESSION SET edition = &quot; command to every connected session, or use database logon trigger to set Edition and reconnect (restart the application).

&quot;AFAIK&quot;, learned a new abbr. today.  ^_^</description>
		<content:encoded><![CDATA[<p>Please correct me if I&#8217;m wrong. So that means we cannot change other session&#8217;s Edition online.<br />
We either use application to send the &#8220;ALTER SESSION SET edition = &#8221; command to every connected session, or use database logon trigger to set Edition and reconnect (restart the application).</p>
<p>&#8220;AFAIK&#8221;, learned a new abbr. today.  ^_^</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian Antognini</title>
		<link>http://antognini.ch/2010/01/edition-based-redefinition/comment-page-1/#comment-7532</link>
		<dc:creator>Christian Antognini</dc:creator>
		<pubDate>Thu, 04 Feb 2010 08:27:36 +0000</pubDate>
		<guid isPermaLink="false">http://antognini.ch/?p=836#comment-7532</guid>
		<description>Hi Charlie

AFAIK there is no specific API for this. So, you have to execute a regular ALTER SESSION statement. E.g.:

&lt;pre&gt;      statement = connection.createStatement();
      statement.execute(&quot;ALTER SESSION SET edition = &quot; + edition);&lt;/pre&gt;

HTH
Chris</description>
		<content:encoded><![CDATA[<p>Hi Charlie</p>
<p>AFAIK there is no specific API for this. So, you have to execute a regular ALTER SESSION statement. E.g.:</p>
<p><pre>      statement = connection.createStatement();
      statement.execute(&quot;ALTER SESSION SET edition = &quot; + edition);</pre></p>
<p>HTH<br />
Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlie Yi 木匠</title>
		<link>http://antognini.ch/2010/01/edition-based-redefinition/comment-page-1/#comment-7516</link>
		<dc:creator>Charlie Yi 木匠</dc:creator>
		<pubDate>Wed, 03 Feb 2010 21:38:02 +0000</pubDate>
		<guid isPermaLink="false">http://antognini.ch/?p=836#comment-7516</guid>
		<description>How to change Session Edition without downtime (without reconnect to database) ? E.g. a JDBC connection.
I couldn&#039;t find it after a quick scan of Oracle Documentation.</description>
		<content:encoded><![CDATA[<p>How to change Session Edition without downtime (without reconnect to database) ? E.g. a JDBC connection.<br />
I couldn&#8217;t find it after a quick scan of Oracle Documentation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Blogroll Report 08/01/2009 – 15/01/2010 &#171; Coskan&#8217;s Approach to Oracle</title>
		<link>http://antognini.ch/2010/01/edition-based-redefinition/comment-page-1/#comment-7491</link>
		<dc:creator>Blogroll Report 08/01/2009 – 15/01/2010 &#171; Coskan&#8217;s Approach to Oracle</dc:creator>
		<pubDate>Tue, 02 Feb 2010 19:04:04 +0000</pubDate>
		<guid isPermaLink="false">http://antognini.ch/?p=836#comment-7491</guid>
		<description>[...] edition based redefinition detailed analysis Christian Antognini-Edition Based Redefinition    Leave a [...]</description>
		<content:encoded><![CDATA[<p>[...] edition based redefinition detailed analysis Christian Antognini-Edition Based Redefinition    Leave a [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

