 




<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IT Answers &#187; Oracle 10g Database</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/oracle-10g-database/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Mon, 20 May 2013 14:44:35 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Why do I not see Oracle database block gets and consistent gets</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/why-do-i-not-see-db-block-gets-and-consistent-gets/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/why-do-i-not-see-db-block-gets-and-consistent-gets/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 16:48:24 +0000</pubDate>
		<dc:creator>SAPORACLE</dc:creator>
				<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g administration]]></category>
		<category><![CDATA[Oracle 10g Database]]></category>
		<category><![CDATA[Oracle 10g performance]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[hi, i have two test scenarios where i&#8217;m trying to understand to actual concept of db block gets and consistent gets. SQL&#62; set autotrace on SQL&#62;select * from scott.emp; i get 14 rows then Execution Plan &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-    0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3 Card=14 Bytes=51           8)    1    0   TABLE ACCESS (FULL) OF &#8216;EMP&#8217; [...]]]></description>
				<content:encoded><![CDATA[<p>hi,<br/><br/> i have two test scenarios where i&#8217;m trying to understand to actual concept of db block gets and consistent gets.<br/><br/> SQL&gt; set autotrace on<br/><br/> SQL&gt;select * from scott.emp;<br/><br/> i get 14 rows then<br/><br/> Execution Plan &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-    0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3 Card=14 Bytes=51           8)<br/><br/>    1    0   TABLE ACCESS (FULL) OF &#8216;EMP&#8217; (TABLE) (Cost=3 Card=14 Bytes           =518)<br/><br/> Statistics &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-        1528  recursive calls           0  db block gets         289  consistent gets          44  physical reads           0  redo size        1585  bytes sent via SQL*Net to client         522  bytes received via SQL*Net from client           4  SQL*Net roundtrips to/from client          31  sorts (memory)           0  sorts (disk)          14  rows processed<br/><br/> on the above i do not see db block gets why?<br/><br/> when i run the same statement again this is what i get<br/><br/> Execution Plan &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-    0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3 Card=14 Bytes=51           8)<br/><br/>    1    0   TABLE ACCESS (FULL) OF &#8216;EMP&#8217; (TABLE) (Cost=3 Card=14 Bytes           =518)<br/><br/>  <br/><br/>  <br/><br/> Statistics &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-           0  recursive calls           0  db block gets          10  consistent gets           0  physical reads           0  redo size        1585  bytes sent via SQL*Net to client         522  bytes received via SQL*Net from client           4  SQL*Net roundtrips to/from client           0  sorts (memory)           0  sorts (disk)          14  rows processed no db lock gets again why?<br/><br/> basically i want to understand the difference between db block gets and consisten gets<br/><br/> also i run the same statement from different session and i get below result<br/><br/> Execution Plan &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-    0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3 Card=14 Bytes=51           8)<br/><br/>    1    0   TABLE ACCESS (FULL) OF &#8216;EMP&#8217; (TABLE) (Cost=3 Card=14 Bytes           =518)<br/><br/> Statistics &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-           0  recursive calls           0  db block gets           0  consistent gets           0  physical reads           0  redo size           0  bytes sent via SQL*Net to client           0  bytes received via SQL*Net from client           0  SQL*Net roundtrips to/from client           0  sorts (memory)           0  sorts (disk)          14  rows processed<br/><br/> here i do not see anything, why?<br/><br/> please help me understand the what&#8217;s happening here?<br/><br/> any help would be greatly appreciated<br/><br/> thanks in advance<br/><br/>  <br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/why-do-i-not-see-db-block-gets-and-consistent-gets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unable to establish connection to Oracle database 10g XE</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/unable-to-establish-connection-to-oracle-database-10g-xe/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/unable-to-establish-connection-to-oracle-database-10g-xe/#comments</comments>
		<pubDate>Sat, 11 Jun 2011 16:09:31 +0000</pubDate>
		<dc:creator>Chandan651</dc:creator>
				<category><![CDATA[Oracle 10g Database]]></category>
		<category><![CDATA[Oracle Database]]></category>
		<category><![CDATA[Oracle Database 10g]]></category>
		<category><![CDATA[Oracle XE]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi All, I have successfully Installed Oracle 10 g XE. When I Click &#8216;Go to Database Homepage&#8217; to access the database the webpage shows an Error message &#8220;unable to establish a connection.&#8221;  What could be the possible reasons for this error? and How can I fix it? Appreciate your HELP ! Thanks in Advance, Chandan ]]></description>
				<content:encoded><![CDATA[<div>Hi All,</div>
<div></div>
<div>I have successfully Installed Oracle 10 g XE. When I Click &#8216;Go to Database Homepage&#8217; to access the database the webpage shows an Error message &#8220;unable to establish a connection.&#8221; </div>
<div>What could be the possible reasons for this error?</div>
<div>and How can I fix it?</div>
<div>Appreciate your HELP !</div>
<div></div>
<div>Thanks in Advance,</div>
<div>Chandan </div>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/unable-to-establish-connection-to-oracle-database-10g-xe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle 10g to SQL Server 2008</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/oracle10g-to-sql-server-2008/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/oracle10g-to-sql-server-2008/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 21:01:46 +0000</pubDate>
		<dc:creator>Cholan</dc:creator>
				<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g Database]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Our DB is Oracle 10g. Our Clients Test DB is SQL Server. Now sometimes, we do incremental loads, full loads or historic load. The present system what we have is we send the insert statements and the DDL to them and they create and load. I did not write it. It takes 40 hours. Under [...]]]></description>
				<content:encoded><![CDATA[<p>Our DB is Oracle 10g.<br />
Our Clients Test DB is SQL Server.<br />
Now sometimes, we do incremental loads, full loads or historic load.<br />
The present system what we have is we send the insert statements and the DDL to them and they create and load. I did not write it.<br />
It takes 40 hours.<br />
Under 1 scheme we have 3 or 4 different client tables.<br />
We need to load for client1 only client 1 tables, client2 client2 tables.<br />
This is dependent upon the values in certain cols and it depends upon a join condition.<br />
In Oracle SQL Loader you can do that kind of loading.<br />
Is there a utility/tool that is available in SQL Server with which I can select only certain table rows by joining 3 tables and do a bulk load.<br />
I need to transfer the PK and nothing else.<br />
Data and PK.<br />
Thanks</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/oracle10g-to-sql-server-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recovering Oracle 10g Express data</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/oacle/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/oacle/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 14:08:55 +0000</pubDate>
		<dc:creator>Asdfzxcv</dc:creator>
				<category><![CDATA[Data Recovery]]></category>
		<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g administration]]></category>
		<category><![CDATA[Oracle 10g Database]]></category>
		<category><![CDATA[Oracle 10g Express]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hello My oracle 10g express eddition is curroped in my system and i install new oracle 10g express edition then how to recover my old data from a folder oraclexe.Plz Hepl me i am in big poblem]]></description>
				<content:encoded><![CDATA[<p>Hello<br/><br/> My oracle 10g express eddition is curroped in my system and i install new oracle 10g express edition then how to recover my old data from a folder oraclexe.Plz Hepl me i am in big poblem<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/oacle/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Rename the Oracle 10g database user</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/rename-the-database-user/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/rename-the-database-user/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 14:23:12 +0000</pubDate>
		<dc:creator>S19890820</dc:creator>
				<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g Database]]></category>
		<category><![CDATA[Oracle Database]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi. I want to rename the database user(username)without deleting the user and again creating in ORACLE 10g database??? plz, help me]]></description>
				<content:encoded><![CDATA[<p>Hi.<br />
I want to rename the database user(username)without deleting the user and again creating in ORACLE 10g database???</p>
<p>plz, help me</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/rename-the-database-user/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Replicating Oracle 10g database in Oracle 9i</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/replicating-orclae-10g-database-in-oracle-9i/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/replicating-orclae-10g-database-in-oracle-9i/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 06:00:50 +0000</pubDate>
		<dc:creator>Yomex</dc:creator>
				<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g Database]]></category>
		<category><![CDATA[Oracle 9i]]></category>
		<category><![CDATA[Oracle Database]]></category>
		<category><![CDATA[Oracle Database Versions]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have an oracle 10g database and would like to create a replica of it in oracle 9i. Could you please explaim if this is possible. I&#8217;m sure there would be backward compatibility issues to contend with.   Regards,]]></description>
				<content:encoded><![CDATA[<p>I have an oracle 10g database and would like to create a replica of it in oracle 9i. Could you please explaim if this is possible.<br/><br/> I&#8217;m sure there would be backward compatibility issues to contend with.<br/><br/>  <br/><br/> Regards,<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/replicating-orclae-10g-database-in-oracle-9i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How can I connect my application server to my Oracle 10g database?</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/oracl-database-10g/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/oracl-database-10g/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 10:36:48 +0000</pubDate>
		<dc:creator>Henlock</dc:creator>
				<category><![CDATA[Application Server]]></category>
		<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g administration]]></category>
		<category><![CDATA[Oracle 10g Database]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[how can i connnect my application server to oracle database 10g. the applciation server have a form that can be accessable through browser(client).pls tell be the configeration that i have to do.]]></description>
				<content:encoded><![CDATA[<p>how can i connnect my application server to oracle database 10g. the applciation server have a form that can be accessable through browser(client).pls tell be the configeration that i have to do.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/oracl-database-10g/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Rename username in Oracle 10g database</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/rename-username-in-oracle-10g-database/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/rename-username-in-oracle-10g-database/#comments</comments>
		<pubDate>Tue, 23 Nov 2010 12:31:53 +0000</pubDate>
		<dc:creator>S19890820</dc:creator>
				<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g Database]]></category>
		<category><![CDATA[Oracle 9i]]></category>
		<category><![CDATA[Oracle administration]]></category>
		<category><![CDATA[Oracle User Profiles]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Rename username in oracle 10g database without droping it]]></description>
				<content:encoded><![CDATA[<p>Rename username in oracle 10g database without droping it</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/rename-username-in-oracle-10g-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle 10g database creation errors in windows 7</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/oracle-database-creation-in-windows-7/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/oracle-database-creation-in-windows-7/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 07:12:06 +0000</pubDate>
		<dc:creator>Avioracle</dc:creator>
				<category><![CDATA[Database issues]]></category>
		<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g Database]]></category>
		<category><![CDATA[Oracle Database]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[hello friends this is avishek behera.. recently i installed oracle 10g database software only in windows 7. after that i tried to create a database.. but i got an error like oermission denied.. i have installed in d drive which is not my system drive and also installed with administrator previlage &#8220;run as administrator&#8221;. still [...]]]></description>
				<content:encoded><![CDATA[<p>hello friends this is avishek behera..</p>
<p>recently i installed oracle 10g database software only in windows 7.<br />
after that i tried to create a database..<br />
but i got an error like oermission denied..<br />
i have installed in d drive which is not my system drive and also installed with administrator previlage &#8220;run as administrator&#8221;.</p>
<p>still i am unable to create database.<br />
please suggest me what to do..<br />
waiting for all ur valuable response..</p>
<p>thanx nd regards..<br />
avishek</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/oracle-database-creation-in-windows-7/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Windows go blank while running reports in 10g</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/windows-go-blank-while-running-reports-in-10g/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/windows-go-blank-while-running-reports-in-10g/#comments</comments>
		<pubDate>Fri, 24 Sep 2010 14:07:39 +0000</pubDate>
		<dc:creator>Freestyler1098</dc:creator>
				<category><![CDATA[Database frontend]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g Database]]></category>
		<category><![CDATA[Oracle Database]]></category>
		<category><![CDATA[Oracle Reports 10g]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have oracle 10g as the database and front-end. When I run my application in 2 different windows and run a report in one of the windows, the other goes blank until the report is finished running. Any ideas why? Appreciate your help.]]></description>
				<content:encoded><![CDATA[<p>I have oracle 10g as the database and front-end. When I run my application in 2 different windows and run a report in one of the windows, the other goes blank until the report is finished running. Any ideas why? Appreciate your help.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/windows-go-blank-while-running-reports-in-10g/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/28 queries in 0.032 seconds using memcached
Object Caching 943/1080 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-20 14:53:18 -->