<?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 administration</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/oracle-10g-administration/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Tue, 18 Jun 2013 07:24:03 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>create messages</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/create-messages/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/create-messages/#comments</comments>
		<pubDate>Sun, 21 Oct 2012 05:17:43 +0000</pubDate>
		<dc:creator>mamatos3</dc:creator>
				<category><![CDATA[Developer Suite 10g]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g administration]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/create-messages/</guid>
		<description><![CDATA[New Discussion Post by carlosdl]]></description>
				<content:encoded><![CDATA[New Discussion Post by carlosdl]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/create-messages/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>problem about using Oracle Form 6i to connect Oracle Database 10g express.</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/problem-about-using-oracle-form-6i-to-connect-oracle-database-10g-express/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/problem-about-using-oracle-form-6i-to-connect-oracle-database-10g-express/#comments</comments>
		<pubDate>Sat, 08 Oct 2011 16:20:22 +0000</pubDate>
		<dc:creator>Programmingnewbie</dc:creator>
				<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g administration]]></category>
		<category><![CDATA[Oracle Database]]></category>
		<category><![CDATA[Oracle Forms 6i]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Sorry to interrupt all of you. I have encountered a problem about using Oracle Form 6i to connect Oracle Database 10g express. As I would like to I use Oracle Net8 Easy Config to create a connection. According to &#8220;tnsnames.ora&#8221;, the paramater of connection is as follows; XE =   (DESCRIPTION =     (ADDRESS = [...]]]></description>
				<content:encoded><![CDATA[<p>Sorry to interrupt all of you.</p>
<p>I have encountered a problem about using Oracle Form 6i to connect Oracle Database 10g express.</p>
<p>As I would like to </p>
<p>I use Oracle Net8 Easy Config to create a connection.</p>
<p>According to &#8220;tnsnames.ora&#8221;, the paramater of connection is as follows;</p>
<p>XE =<br />
  (DESCRIPTION =<br />
    (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))<br />
    (CONNECT_DATA = (SID = XE))<br />
  )</p>
<p>Unfortunately, when I use Oracle Net8 Easy Config to test the connection, an error message is prompted as follows:</p>
<p>Connecting&#8230;.</p>
<p>The test did not succeed.<br />
ORA-03106: fatal two-task communication protocol error</p>
<p>There may be an error in the fields entered<br />
or the server may not be ready for a connection.<br />
You can check the server and retry, or continue.</p>
<p>After I google it, I still have no idea how to solve the problem. I would like to ask, could anyone mind providing some hints or solution to address the issues.</p>
<p>Thanks for your assistance in advance.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/problem-about-using-oracle-form-6i-to-connect-oracle-database-10g-express/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Calculation in Oracle 10g</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/calculation-in-oracle-10g/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/calculation-in-oracle-10g/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 15:10:11 +0000</pubDate>
		<dc:creator>Sivam</dc:creator>
				<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g administration]]></category>
		<category><![CDATA[Oracle administration]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have created Stud_Transaction table. The code is create table Stud_Transaction ( Student_Id varchar2(10), Account_no varchar2(20), date_of_deposit date, month varchar2(10), year number, Amount_deposited number, Stud_Acc_Balance number, CONSTRAINT fk_PerStud_Transaction FOREIGN KEY (Student_Id) REFERENCES Student (Student_Id) );  i inserted the values into table except Stud_acc_balance column.The Stud_acc_balance column will  update automatically with respect to the Amount_deposited by the [...]]]></description>
				<content:encoded><![CDATA[<p>I have created Stud_Transaction table. The code is <br/><br/> create table Stud_Transaction ( Student_Id varchar2(10), Account_no varchar2(20), date_of_deposit date, month varchar2(10), year number, Amount_deposited number, Stud_Acc_Balance number, CONSTRAINT fk_PerStud_Transaction FOREIGN KEY (Student_Id) REFERENCES Student (Student_Id) );<br/><br/>  i inserted the values into table except Stud_acc_balance column.The Stud_acc_balance column will  update automatically with respect to the Amount_deposited by the student corresponding to their id.<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/calculation-in-oracle-10g/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installation error in Oracle 10g application server on Windows Server 2003 R2</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/installation-error-in-10g-application-server-on-windows-2003-server-r2-2/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/installation-error-in-10g-application-server-on-windows-2003-server-r2-2/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 10:24:00 +0000</pubDate>
		<dc:creator>FaheemNawaz</dc:creator>
				<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g administration]]></category>
		<category><![CDATA[Oracle installation]]></category>
		<category><![CDATA[Windows Server 2003 R2]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have installed Windows 2003 Server R2 at my Machine. I want to Install Oracle 10G Application On it, but when I put the CD on my CD ROM Drive and Right Click the Setup and Compatability Tab shows only: 1. Win95 2. Win98/me 3. NT 4.0 Service Pack5 4. Windows 200 5. Windows xp [...]]]></description>
				<content:encoded><![CDATA[<p>I have installed Windows 2003 Server R2 at my Machine. I want to Install Oracle 10G Application On it, but when I put the CD on my CD ROM Drive and Right Click the Setup and Compatability Tab shows only:<br/><br/> 1. Win95<br/><br/> 2. Win98/me<br/><br/> 3. NT 4.0 Service Pack5<br/><br/> 4. Windows 200<br/><br/> 5. Windows xp<br/><br/> I Select Each option and run setup. But setup cannot Run (Means Nothing happened and setup not started)<br/><br/> I m new in 10G Application Server.<br/><br/> Kindly Advice me step by step<br/><br/> Thanks<br/><br/> Faheem Nawaz<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/installation-error-in-10g-application-server-on-windows-2003-server-r2-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>make Oracle 10g compatible with 81</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/make-oracle-10g-compatible-with-81/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/make-oracle-10g-compatible-with-81/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 17:47:43 +0000</pubDate>
		<dc:creator>Rweilandusace</dc:creator>
				<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g administration]]></category>
		<category><![CDATA[Oracle 8.1.4]]></category>
		<category><![CDATA[Oracle Compatibility]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[ Can Oracle 10g be made compatible with 8.1?  I&#8217;ve installed 10g then 8.1.  When I try to connect to an 8.1 database, i get the error: &#8220;[MERANT][ODBC Oracle 8 driver]Driver&#8217;s SQLSetConnectAttr failed.[MERANT][ODBC Oracle 8 driver]Optional feature not implemented.{MERANT][ODBC Oracle driver][Oracle 8]ORA-12154: tns:could not resolve the connect identirier specified&#8221;   Thanks!]]></description>
				<content:encoded><![CDATA[<p> Can Oracle 10g be made compatible with 8.1?  I&#8217;ve installed 10g then 8.1.  When I try to connect to an 8.1 database, i get the error:<br/><br/> &#8220;[MERANT][ODBC Oracle 8 driver]Driver&#8217;s SQLSetConnectAttr failed.[MERANT][ODBC Oracle 8 driver]Optional feature not implemented.{MERANT][ODBC Oracle driver][Oracle 8]ORA-12154: tns:could not resolve the connect identirier specified&#8221;<br/><br/>  <br/><br/> Thanks!<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/make-oracle-10g-compatible-with-81/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Problem exporting Oracle 10g to excel</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/problem-in-export-to-excel/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/problem-in-export-to-excel/#comments</comments>
		<pubDate>Sun, 14 Aug 2011 04:34:09 +0000</pubDate>
		<dc:creator>Sfdsfsfsfsfsfsfsfsfsfsfsf</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g administration]]></category>
		<category><![CDATA[Oracle export]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[New Discussion Post by hussain22juzer]]></description>
				<content:encoded><![CDATA[New Discussion Post by hussain22juzer]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/problem-in-export-to-excel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<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>Auditing Oracle 10g and above</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/auditing-oracle-10g-and-above/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/auditing-oracle-10g-and-above/#comments</comments>
		<pubDate>Wed, 25 May 2011 19:15:04 +0000</pubDate>
		<dc:creator>DanD</dc:creator>
				<category><![CDATA[Auditing]]></category>
		<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g administration]]></category>
		<category><![CDATA[Oracle Database]]></category>
		<category><![CDATA[Oracle Database 10g]]></category>
		<category><![CDATA[Oracle security]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Is it possible to fully audit Oracle Databases without Oracle&#8217;s audit tools? At least on 10g and above, many of the configuration files that could be reveiwed and audited for content and permissions no longer exist or are not used. Init.ora, sqlnet.ora are no longer used, and I suspect I will find others as I [...]]]></description>
				<content:encoded><![CDATA[<p>Is it possible to fully audit Oracle Databases without Oracle&#8217;s audit tools? At least on 10g and above, many of the configuration files that could be reveiwed and audited for content and permissions no longer exist or are not used. Init.ora, sqlnet.ora are no longer used, and I suspect I will find others as I proceed. Has Oracle become the new IBM of account control? I&#8217;ve some Oracle experience with older version, and I can&#8217;t find ways to pull this info. Our DBA can only give me Oracle Enterprise Manager screen shots but can&#8217;t tell me a $V_ view or even whick files to query any of this info from, including the permissions for the options since there is no longer a file that contains the parameters. Any suggestions? Has Oracle locked us into finding more money we don&#8217;t have for hidden cost?  I&#8217;m beginning to see some of the same issues with finding standards for their Enterprise Linux.  It&#8217;s not really Linux anymore.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/auditing-oracle-10g-and-above/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to install &amp; configure report server in Oracle developer suite 10g?</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/report-server/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/report-server/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 10:01:28 +0000</pubDate>
		<dc:creator>Skm57</dc:creator>
				<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g administration]]></category>
		<category><![CDATA[Oracle Developer Suite]]></category>
		<category><![CDATA[Oracle Reports 10g]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[how to install &#038; configure report server in developersuite 10g]]></description>
				<content:encoded><![CDATA[<p>how to install &#038; configure report server in developersuite 10g</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/report-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hide ID and Password in web.show_document</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/hide-id-and-password-in-webshow_document/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/hide-id-and-password-in-webshow_document/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 20:39:56 +0000</pubDate>
		<dc:creator>Janiroo2</dc:creator>
				<category><![CDATA[Oracle 10g]]></category>
		<category><![CDATA[Oracle 10g administration]]></category>
		<category><![CDATA[Oracle 10g forms]]></category>
		<category><![CDATA[Oracle Forms 10g]]></category>
		<category><![CDATA[Web.Show_Document]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[How do I hide the id and password in a web.show_document command executed from an Oracle 10g form?]]></description>
				<content:encoded><![CDATA[<p>How do I hide the id and password in a web.show_document command executed from an Oracle 10g form?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/hide-id-and-password-in-webshow_document/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/26 queries in 0.024 seconds using memcached
Object Caching 927/1049 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-06-18 07:31:42 -->