 




<?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: Error in Select Statement</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/error-in-select-statement/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/error-in-select-statement/</link>
	<description></description>
	<lastBuildDate>Tue, 21 May 2013 00:48:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: mortree</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/error-in-select-statement/#comment-40378</link>
		<dc:creator>mortree</dc:creator>
		<pubDate>Mon, 03 Apr 2006 08:06:29 +0000</pubDate>
		<guid isPermaLink="false">#comment-40378</guid>
		<description><![CDATA[Could it be simple syntax? SQL on Oracle and MSSQL or Access is not always precisely the same. The statement that works may just be the case where the syntax is the same.]]></description>
		<content:encoded><![CDATA[<p>Could it be simple syntax? SQL on Oracle and MSSQL or Access is not always precisely the same. The statement that works may just be the case where the syntax is the same.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daveinaz</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/error-in-select-statement/#comment-40379</link>
		<dc:creator>daveinaz</dc:creator>
		<pubDate>Fri, 31 Mar 2006 10:59:39 +0000</pubDate>
		<guid isPermaLink="false">#comment-40379</guid>
		<description><![CDATA[What is the actual SQL statement you&#039;re trying to execute? ORA-01013 is usually not the real problem. If the ORA-01013 error is preceded by any other error, then it is probably the preceding error that needs to be investigated.

This bit is a quote---
Timeouts are a frequent cause of ORA-01013. This can be difficult to identify because a timeout may not be explicitly reported as part of the error.

The Oracle 8 ODBC driver implements a timeout, the previous Oracle 7 ODBC driver did not. SQL*Net also implements a timeout. This is specified via the &#039;sqlnet.expire_time&#039; parameter in the &#039;sqlnet.ora&#039; file. 
----

You might also want to take a look at http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:704225010478 ]]></description>
		<content:encoded><![CDATA[<p>What is the actual SQL statement you&#8217;re trying to execute? ORA-01013 is usually not the real problem. If the ORA-01013 error is preceded by any other error, then it is probably the preceding error that needs to be investigated.</p>
<p>This bit is a quote&#8212;<br />
Timeouts are a frequent cause of ORA-01013. This can be difficult to identify because a timeout may not be explicitly reported as part of the error.</p>
<p>The Oracle 8 ODBC driver implements a timeout, the previous Oracle 7 ODBC driver did not. SQL*Net also implements a timeout. This is specified via the &#8216;sqlnet.expire_time&#8217; parameter in the &#8216;sqlnet.ora&#8217; file.<br />
&#8212;-</p>
<p>You might also want to take a look at <a href="http://asktom.oracle.com/pls/ask/f?p=4950:8" rel="nofollow">http://asktom.oracle.com/pls/ask/f?p=4950:8</a>:::::F4950_P8_DISPLAYID:704225010478 </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: a09969</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/error-in-select-statement/#comment-40380</link>
		<dc:creator>a09969</dc:creator>
		<pubDate>Thu, 30 Mar 2006 11:09:45 +0000</pubDate>
		<guid isPermaLink="false">#comment-40380</guid>
		<description><![CDATA[Don&#039;t know if you&#039;re still having problems or not. Here are a couple more thoughts.
1) to be tidy you should set your recordset to nothing after using it:
     Set ExecuteSelect = Rs
     Set Rs = Nothing
End Function

2) This is from another web site: Use a SQL Pass Through query instead. You would use Oracle syntax in it and send it to the server where the whole thing is processed and only the result are returned. The results are read
only though.

I (someone else) used one for a huge delete query. The time it took for Access to do it was over 8 hours. Oracle did it in less than 5 minutes. Network communication
was the problem. If the data had been local to Access, it would have been extremely fast too.

In fact Access is probably faster than Oracle or SQL Server in many respects when the file is local.
]]></description>
		<content:encoded><![CDATA[<p>Don&#8217;t know if you&#8217;re still having problems or not. Here are a couple more thoughts.<br />
1) to be tidy you should set your recordset to nothing after using it:<br />
     Set ExecuteSelect = Rs<br />
     Set Rs = Nothing<br />
End Function</p>
<p>2) This is from another web site: Use a SQL Pass Through query instead. You would use Oracle syntax in it and send it to the server where the whole thing is processed and only the result are returned. The results are read<br />
only though.</p>
<p>I (someone else) used one for a huge delete query. The time it took for Access to do it was over 8 hours. Oracle did it in less than 5 minutes. Network communication<br />
was the problem. If the data had been local to Access, it would have been extremely fast too.</p>
<p>In fact Access is probably faster than Oracle or SQL Server in many respects when the file is local.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rloveall</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/error-in-select-statement/#comment-40381</link>
		<dc:creator>rloveall</dc:creator>
		<pubDate>Wed, 29 Mar 2006 07:47:38 +0000</pubDate>
		<guid isPermaLink="false">#comment-40381</guid>
		<description><![CDATA[You say you&#039;re connecting to two different schema&#039;s but show only one connection. What is the code for the second connection? and what&#039;s the Select statement? You state it works when specifing the data for the fields, can you be more specific?]]></description>
		<content:encoded><![CDATA[<p>You say you&#8217;re connecting to two different schema&#8217;s but show only one connection. What is the code for the second connection? and what&#8217;s the Select statement? You state it works when specifing the data for the fields, can you be more specific?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: a09969</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/error-in-select-statement/#comment-40382</link>
		<dc:creator>a09969</dc:creator>
		<pubDate>Tue, 28 Mar 2006 10:52:45 +0000</pubDate>
		<guid isPermaLink="false">#comment-40382</guid>
		<description><![CDATA[I agree it is probably a timeout issue. You can set the timeout in the web.xml (use standard html tags - substituted parenthesis to comply with &#039;whatis&#039; rules):

(session-config)
  (session-timeout)480(/session-timeout) 
(/session-config)

If this is a company standard timeout, exceptions may have to be pointed to new original URL to pick up the different setting.


]]></description>
		<content:encoded><![CDATA[<p>I agree it is probably a timeout issue. You can set the timeout in the web.xml (use standard html tags &#8211; substituted parenthesis to comply with &#8216;whatis&#8217; rules):</p>
<p>(session-config)<br />
  (session-timeout)480(/session-timeout)<br />
(/session-config)</p>
<p>If this is a company standard timeout, exceptions may have to be pointed to new original URL to pick up the different setting.</p>
]]></content:encoded>
	</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/10 queries in 0.038 seconds using memcached
Object Caching 323/329 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-21 00:58:10 -->