<?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 for Laurent Schneider</title>
	<atom:link href="http://laurentschneider.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://laurentschneider.com</link>
	<description>Oracle Certified Master</description>
	<lastBuildDate>Fri, 24 May 2013 02:42:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
	<item>
		<title>Comment on On star transformation by Joe Gharibian</title>
		<link>http://laurentschneider.com/wordpress/2011/07/on-star-transformation.html/comment-page-1#comment-30162</link>
		<dc:creator>Joe Gharibian</dc:creator>
		<pubDate>Fri, 24 May 2013 02:42:39 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/?p=1051#comment-30162</guid>
		<description><![CDATA[Thank in advance for answering my question.

I am mostly interested in this comment &quot;that 11g no longer requires bitmap indexes for star transformation. When I substitute b-tree indexes for your bitmap indexes..&quot;
We are converting our PK indexes to use bitmap, knowing that is what Oracle suggests in DW. And also to take advantage of the start formation during execution. Those this work as well for no bitmap indexes in PKs? Doesn&#039;t Oracle still convert the B-Tree indexes - the row ids to bitmap at the execution time? 
Which one is more efficient? If Oracle uses start schemas for b-tree indexes, should we still convert all our PK indexes to bitmap?
Also you need to have the database parameter star_tranformation = TRUE if we want star transformations to work correct? I turned it on for our Data Warehouse globaley and some queries ran a lot longer, that forced me to turn it off.
Thanks,
Joe]]></description>
		<content:encoded><![CDATA[<p>Thank in advance for answering my question.</p>
<p>I am mostly interested in this comment &#8220;that 11g no longer requires bitmap indexes for star transformation. When I substitute b-tree indexes for your bitmap indexes..&#8221;<br />
We are converting our PK indexes to use bitmap, knowing that is what Oracle suggests in DW. And also to take advantage of the start formation during execution. Those this work as well for no bitmap indexes in PKs? Doesn&#8217;t Oracle still convert the B-Tree indexes &#8211; the row ids to bitmap at the execution time?<br />
Which one is more efficient? If Oracle uses start schemas for b-tree indexes, should we still convert all our PK indexes to bitmap?<br />
Also you need to have the database parameter star_tranformation = TRUE if we want star transformations to work correct? I turned it on for our Data Warehouse globaley and some queries ran a lot longer, that forced me to turn it off.<br />
Thanks,<br />
Joe</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on use cron to schedule a job only once by Laurent Schneider</title>
		<link>http://laurentschneider.com/wordpress/2013/05/use-cron-to-schedule-a-job-only-once.html/comment-page-1#comment-30126</link>
		<dc:creator>Laurent Schneider</dc:creator>
		<pubDate>Thu, 23 May 2013 15:55:47 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/?p=1559#comment-30126</guid>
		<description><![CDATA[good idea, or maybe 

55 17 23 05 * /bin/runyourscript ; crontab -l &#124; grep -v DELETEME-001 &#124; crontab

:)

so it will autodelete]]></description>
		<content:encoded><![CDATA[<p>good idea, or maybe </p>
<p>55 17 23 05 * /bin/runyourscript ; crontab -l | grep -v DELETEME-001 | crontab</p>
<p> <img src='http://laurentschneider.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>so it will autodelete</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Delete one billion row by Sudhir</title>
		<link>http://laurentschneider.com/wordpress/2013/04/delete-one-billion-row.html/comment-page-1#comment-30064</link>
		<dc:creator>Sudhir</dc:creator>
		<pubDate>Thu, 23 May 2013 02:37:52 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/?p=1552#comment-30064</guid>
		<description><![CDATA[test.snum has any trigger? I remember Tom Kyte mentioning something about &quot;restarting&quot; of internal activity of trigger when consistent get failing or some such thing ...
Or may be just blocking lock? unindexed FK?

Thanks
/S/]]></description>
		<content:encoded><![CDATA[<p>test.snum has any trigger? I remember Tom Kyte mentioning something about &#8220;restarting&#8221; of internal activity of trigger when consistent get failing or some such thing &#8230;<br />
Or may be just blocking lock? unindexed FK?</p>
<p>Thanks<br />
/S/</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on use cron to schedule a job only once by Sudhir</title>
		<link>http://laurentschneider.com/wordpress/2013/05/use-cron-to-schedule-a-job-only-once.html/comment-page-1#comment-30063</link>
		<dc:creator>Sudhir</dc:creator>
		<pubDate>Thu, 23 May 2013 02:34:35 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/?p=1559#comment-30063</guid>
		<description><![CDATA[How about

15 14 15 05 * /tmp/run-my-job; mv /tmp/run-my-job /tmp/run-my-job-hold 2&gt;/dev/null

it wont find it next time
/S/]]></description>
		<content:encoded><![CDATA[<p>How about</p>
<p>15 14 15 05 * /tmp/run-my-job; mv /tmp/run-my-job /tmp/run-my-job-hold 2&gt;/dev/null</p>
<p>it wont find it next time<br />
/S/</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Delete one billion row by Laurent Schneider</title>
		<link>http://laurentschneider.com/wordpress/2013/04/delete-one-billion-row.html/comment-page-1#comment-29845</link>
		<dc:creator>Laurent Schneider</dc:creator>
		<pubDate>Tue, 21 May 2013 05:52:58 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/?p=1552#comment-29845</guid>
		<description><![CDATA[I fail to understand how you could delete more than one row with &lt;i&gt;where rowid=:B3&lt;/i&gt; Probably you use some cursor loop and you should simply have fresh stats and use &lt;code&gt;delete from test.snum where yyyymmdd=:B1&lt;/code&gt;]]></description>
		<content:encoded><![CDATA[<p>I fail to understand how you could delete more than one row with <i>where rowid=:B3</i> Probably you use some cursor loop and you should simply have fresh stats and use <code>delete from test.snum where yyyymmdd=:B1</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Delete one billion row by Haris</title>
		<link>http://laurentschneider.com/wordpress/2013/04/delete-one-billion-row.html/comment-page-1#comment-29716</link>
		<dc:creator>Haris</dc:creator>
		<pubDate>Mon, 20 May 2013 09:12:22 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/?p=1552#comment-29716</guid>
		<description><![CDATA[HI Laurent

I have a delete statement with rowid, the primary key and date value(yyyymmdd) in the where clause but somehow the statement is running more than 12 hours. Number of records to be deleted is 107262 out of 218967984. 

delete from test.snum where rowid=:B3 and snum_id=:B2 and yyyymmdd=:B1

 Id  &#124; Operation                   
------------------------------------
   0 &#124; DELETE STATEMENT            
   1 &#124;  DELETE                     
*  2 &#124;   TABLE ACCESS BY USER ROWID
------------------------------------
indexes: pk_snum_id (snum_id)
                 idx1_prod_id (prod_id)
                 idx2_mnr (mat_num)
    
Any advice.

Regards
-Haris]]></description>
		<content:encoded><![CDATA[<p>HI Laurent</p>
<p>I have a delete statement with rowid, the primary key and date value(yyyymmdd) in the where clause but somehow the statement is running more than 12 hours. Number of records to be deleted is 107262 out of 218967984. </p>
<p>delete from test.snum where rowid=:B3 and snum_id=:B2 and yyyymmdd=:B1</p>
<p> Id  | Operation<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
   0 | DELETE STATEMENT<br />
   1 |  DELETE<br />
*  2 |   TABLE ACCESS BY USER ROWID<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
indexes: pk_snum_id (snum_id)<br />
                 idx1_prod_id (prod_id)<br />
                 idx2_mnr (mat_num)</p>
<p>Any advice.</p>
<p>Regards<br />
-Haris</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New environment for OCM 11g by Laurent Schneider</title>
		<link>http://laurentschneider.com/wordpress/2013/05/new-environment-for-ocm-11g.html/comment-page-1#comment-29542</link>
		<dc:creator>Laurent Schneider</dc:creator>
		<pubDate>Sat, 18 May 2013 05:45:35 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/?p=1562#comment-29542</guid>
		<description><![CDATA[you can do most tasks in command line anyway. It was a very long time I last deployed 10g oem and I was pretty lucky and not well prepared on the 10g installation. But it is just a web tool and you are doing database OCM not middleware OCM]]></description>
		<content:encoded><![CDATA[<p>you can do most tasks in command line anyway. It was a very long time I last deployed 10g oem and I was pretty lucky and not well prepared on the 10g installation. But it is just a web tool and you are doing database OCM not middleware OCM</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New environment for OCM 11g by Yannick</title>
		<link>http://laurentschneider.com/wordpress/2013/05/new-environment-for-ocm-11g.html/comment-page-1#comment-29479</link>
		<dc:creator>Yannick</dc:creator>
		<pubDate>Fri, 17 May 2013 13:07:26 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/?p=1562#comment-29479</guid>
		<description><![CDATA[Hi Laurent,

Thanks for notification ! Do you think it&#039;s an issue to even use Cloud Control 12c, I clearly do not want to move backward on this...

Thanks, Yannick.]]></description>
		<content:encoded><![CDATA[<p>Hi Laurent,</p>
<p>Thanks for notification ! Do you think it&#8217;s an issue to even use Cloud Control 12c, I clearly do not want to move backward on this&#8230;</p>
<p>Thanks, Yannick.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle Password Repository by Laurent Schneider</title>
		<link>http://laurentschneider.com/wordpress/2006/07/oracle-password-repository.html/comment-page-1#comment-29200</link>
		<dc:creator>Laurent Schneider</dc:creator>
		<pubDate>Tue, 14 May 2013 12:40:53 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/wordpress/2006/07/25/oracle-password-repository/#comment-29200</guid>
		<description><![CDATA[Hi,

Not sure what you are looking for. If your requirement is hardcoded password, why would you need a password tool?

The Oracle wallet is free, and you can use multiple wallets of course (just by changing TNS_ADMIN)...  you can not have indeed multiple users as you do use /, which is a limitation obviously.

- what is the point in completely hiding passwords from DBA’s who can access anything anyway?
Valid question. One point is traceability. Audit. You could have a policy that each user/admin have its own logging, and only the &quot;application server&quot; is using the technical account. It does not protect you from the DBA. But it protects the DBA from being guilty by default, doesn&#039;t it?]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Not sure what you are looking for. If your requirement is hardcoded password, why would you need a password tool?</p>
<p>The Oracle wallet is free, and you can use multiple wallets of course (just by changing TNS_ADMIN)&#8230;  you can not have indeed multiple users as you do use /, which is a limitation obviously.</p>
<p>- what is the point in completely hiding passwords from DBA’s who can access anything anyway?<br />
Valid question. One point is traceability. Audit. You could have a policy that each user/admin have its own logging, and only the &#8220;application server&#8221; is using the technical account. It does not protect you from the DBA. But it protects the DBA from being guilty by default, doesn&#8217;t it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle Password Repository by Jan-Marten Spit</title>
		<link>http://laurentschneider.com/wordpress/2006/07/oracle-password-repository.html/comment-page-1#comment-29193</link>
		<dc:creator>Jan-Marten Spit</dc:creator>
		<pubDate>Tue, 14 May 2013 09:52:46 +0000</pubDate>
		<guid isPermaLink="false">http://laurentschneider.com/wordpress/2006/07/25/oracle-password-repository/#comment-29193</guid>
		<description><![CDATA[i wrote this a long time ago, and deployed it again this year (2013) to save a site from hardcoded passwords. my current requirements are:

- hardcoded passwords in scripts not running as oracle user, but on the same machine as the db instance.
- more than a dozen passwords, multiple database instances.

if there are better (and free/cheap) solutions i would like to know.

regarding the above article and comments (there is a README in the opr source which is intended to be read)

- the passwords are NOT stored encrypted, only obfuscated. the security is in the access to the file, not encryption of the stored password.
- the password file, if you follow the instruction in the README, is only readable for the user who created the repos, eg &#039;oracle&#039;. although you can grant access to other OS users.
- you can easily use a single file for more than one connection (which i never succeeded in doing with oracle wallet, but again, if someone knows..)
- what is the point in completely hiding passwords from DBA&#039;s who can access anything anyway?
- i agree that in some situations (only a single user using passwords) , using shell/env is just as convenient]]></description>
		<content:encoded><![CDATA[<p>i wrote this a long time ago, and deployed it again this year (2013) to save a site from hardcoded passwords. my current requirements are:</p>
<p>- hardcoded passwords in scripts not running as oracle user, but on the same machine as the db instance.<br />
- more than a dozen passwords, multiple database instances.</p>
<p>if there are better (and free/cheap) solutions i would like to know.</p>
<p>regarding the above article and comments (there is a README in the opr source which is intended to be read)</p>
<p>- the passwords are NOT stored encrypted, only obfuscated. the security is in the access to the file, not encryption of the stored password.<br />
- the password file, if you follow the instruction in the README, is only readable for the user who created the repos, eg &#8216;oracle&#8217;. although you can grant access to other OS users.<br />
- you can easily use a single file for more than one connection (which i never succeeded in doing with oracle wallet, but again, if someone knows..)<br />
- what is the point in completely hiding passwords from DBA&#8217;s who can access anything anyway?<br />
- i agree that in some situations (only a single user using passwords) , using shell/env is just as convenient</p>
]]></content:encoded>
	</item>
</channel>
</rss>
