<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>Spam Filter ISP Forums : Errors while using Oracle</title>
  <link>https://www.logsat.com/spamfilter/forums/</link>
  <description><![CDATA[This is an XML content feed of; Spam Filter ISP Forums : Spam Filter ISP Support : Errors while using Oracle]]></description>
  <pubDate>Sat, 14 Mar 2026 13:35:49 +0000</pubDate>
  <lastBuildDate>Wed, 10 Sep 2003 23:18:00 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 11.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://www.logsat.com/spamfilter/forums/RSS_post_feed.asp?TID=1834</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Spam Filter ISP Forums]]></title>
   <url>https://www.logsat.com/spamfilter/forums/forum_images/web_wiz_forums.png</url>
   <link>https://www.logsat.com/spamfilter/forums/</link>
  </image>
  <item>
   <title><![CDATA[Errors while using Oracle : Jan, Wemay have fixed this problem...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1834&amp;PID=1940&amp;title=errors-while-using-oracle#1940</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=8">LogSat</a><br /><strong>Subject:</strong> 1834<br /><strong>Posted:</strong> 10 September 2003 at 11:18pm<br /><br /><P>Jan,</P><P>We&nbsp;may have fixed this problem for the older Oracle releases. I emailed you privately for further info.</P><P>Roberto F.<BR>LogSat Software</P>]]>
   </description>
   <pubDate>Wed, 10 Sep 2003 23:18:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1834&amp;PID=1940&amp;title=errors-while-using-oracle#1940</guid>
  </item> 
  <item>
   <title><![CDATA[Errors while using Oracle : I tried to turn on sqlnet tracing...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1834&amp;PID=1921&amp;title=errors-while-using-oracle#1921</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=2">Guests</a><br /><strong>Subject:</strong> 1834<br /><strong>Posted:</strong> 09 September 2003 at 8:02am<br /><br /><P>I tried to turn on sqlnet tracing and I think the problem is in one&nbsp;extra semicolon ";" at the end of some commands.</P><P>I compared commands sent during Settings - Quarantine DB - Step 2 (these are without&nbsp;;) with first command sent during Quarantine&nbsp;DB -&nbsp;Refresh&nbsp;(SELECT Count(QuarID) FROM tblQuarantine WHERE tblQuarantine.Expire = 0;). I am able to simulate the error in SQLPlus by adding one extra ; after the command.</P><P>I am using spamfilter v. 178 (non-registered) and MS Provider for Oracle (I dont know its version).</P><P>I watched the commands sent by you and I thing that Oracle doesnt use syntax "INNER JOIN" in any version. But it is possible that the ADO is able to translate the command properly :-o</P><P>I am going to try another OLE DB provider.</P><P>Bye.</P><P>Jan</P><P>&nbsp;</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Tue, 09 Sep 2003 08:02:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1834&amp;PID=1921&amp;title=errors-while-using-oracle#1921</guid>
  </item> 
  <item>
   <title><![CDATA[Errors while using Oracle : Jan, We&amp;#039;ve only tested with...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1834&amp;PID=1902&amp;title=errors-while-using-oracle#1902</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=8">LogSat</a><br /><strong>Subject:</strong> 1834<br /><strong>Posted:</strong> 05 September 2003 at 10:24pm<br /><br /><P>Jan,</P><P>We've only tested with 8i and 9i, older versions are&nbsp;untested and we may not able to support them.</P><P>We use a lot of ADO objects in our code to try to make generic calls and let ADO take care of converting them to specific SQL for the various platforms. In case of the "UpdateListViewQuarantine" error, we do issue a simple&nbsp;SQL statement:</P><P>SELECT Count(QuarID) FROM tblQuarantine WHERE tblQuarantine.Expire = 0;</P><P>followed by:</P><P>&nbsp;&nbsp;&nbsp; 'SELECT tblQuarantine.QuarID, tblQuarantine.Deliver, tblQuarantine.Expire, tblQuarantine.EmailFrom, tblQuarantine.EmailTo, tblQuarantine.Subject, tblQuarantine.MsgDate, tblRejectCodes.RejectDesc, ' + '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tblQuarantine.MsgID, tblQuarantine.RejectDetails, tblQuarantine.ServerID ' +&nbsp; 'FROM&nbsp;&nbsp; tblQuarantine INNER JOIN ' +'&nbsp; tblRejectCodes ON tblQuarantine.RejectID = tblRejectCodes.RejectID ' +<BR>&nbsp;&nbsp;&nbsp; 'WHERE tblQuarantine.Expire = 0 ' +<BR>&nbsp;&nbsp;&nbsp; 'ORDER BY tblQuarantine.MsgDate DESC;';<BR></P><P>In the case of the "DeleteExpiredQuarantine" things are more complex since we use a parameterized query (:MsgDate is parameter):</P><P>'UPDATE tblQuarantine SET Expire = 1 WHERE MsgDate &lt;= :MsgDate AND ' +&nbsp; '( (ServerID = ' + IntToStr(tblServersServerID) + ') OR (ServerID = 0) OR (ServerID IS NULL) );'</P><P>followed by a simple SQL:</P><P>DELETE tblMsgs FROM tblMsgs INNER JOIN tblQuarantine ' + 'ON tblMsgs.MsgID = tblQuarantine.MsgID WHERE tblQuarantine.Expire &lt;&gt; 0;'<BR></P><P>If you turn on tracing in SQLnet you should be able to see how ADO converts these calls into SQL. Also, which provider are you using to connect? Microsoft OLE DB for Oracle, Oracle's OLE DB? Others? Have you tried switching providers?</P><P>Finally, which verison of SpamFilter are you using?</P><P>Roberto F.<BR>LogSat Software</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Fri, 05 Sep 2003 22:24:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1834&amp;PID=1902&amp;title=errors-while-using-oracle#1902</guid>
  </item> 
  <item>
   <title><![CDATA[Errors while using Oracle : Anything new with this problem...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1834&amp;PID=1897&amp;title=errors-while-using-oracle#1897</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=2">Guests</a><br /><strong>Subject:</strong> 1834<br /><strong>Posted:</strong> 05 September 2003 at 4:43am<br /><br /><P>Anything new with this problem ?</P><P>Jan</P>]]>
   </description>
   <pubDate>Fri, 05 Sep 2003 04:43:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1834&amp;PID=1897&amp;title=errors-while-using-oracle#1897</guid>
  </item> 
  <item>
   <title><![CDATA[Errors while using Oracle : Sorry, I forgot this trigger: create...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1834&amp;PID=1842&amp;title=errors-while-using-oracle#1842</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=2">Guests</a><br /><strong>Subject:</strong> 1834<br /><strong>Posted:</strong> 02 September 2003 at 7:08am<br /><br /><P>Sorry, I forgot this trigger:</P><P>create trigger TBLSERVERS_AUTOINCREMENT BEFORE INSERT on TBLSERVERS for each row<BR>DECLARE l_pkval number(22)\;&nbsp;&nbsp;&nbsp; <BR>BEGIN&nbsp; <BR>&nbsp; select ID_SEQ.nextval into l_pkval from dual\;&nbsp;&nbsp;&nbsp; <BR>&nbsp; :new.SERVERID :=&nbsp; l_pkval\;&nbsp;&nbsp;&nbsp; <BR>END\;<BR>;<BR></P>]]>
   </description>
   <pubDate>Tue, 02 Sep 2003 07:08:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1834&amp;PID=1842&amp;title=errors-while-using-oracle#1842</guid>
  </item> 
  <item>
   <title><![CDATA[Errors while using Oracle : We are using Oracle 8.0.4 version....]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1834&amp;PID=1841&amp;title=errors-while-using-oracle#1841</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=2">Guests</a><br /><strong>Subject:</strong> 1834<br /><strong>Posted:</strong> 02 September 2003 at 7:03am<br /><br /><P>We are using Oracle 8.0.4 version. It is quite old version :-)</P><P>I made these corrections in your scripts:</P><P>CREATE TABLE TBLSERVERS (<BR>&nbsp; SERVERID NUMBER(10) NOT NULL,<BR>&nbsp; SERVERNAME VARCHAR2(50) NOT NULL<BR>);</P><P>and</P><P>CREATE TABLE TBLQUARANTINE (<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QUARID&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NUMBER(10) NOT NULL<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CHECK (("QUARID" IS NOT NULL)),<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EMAILFROM&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; VARCHAR2(100) NULL,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EMAILTO&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; VARCHAR2(100) NULL,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SUBJECT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; VARCHAR2(100) NULL,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MSGDATE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DATE NULL,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MSGID&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NUMBER(10) NULL,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; REJECTID&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NUMBER(10) NULL,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; REJECTDETAILS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; VARCHAR2(200) NULL,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DELIVER&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NUMBER(2) NULL,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EXPIRE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NUMBER(2) NULL,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SERVERID&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NUMBER(10) NULL<BR>);<BR></P><P>nothing else (no indexes, constraints...)</P><P>We are a sw-developer company and we have some expiriences with oracle. I thing we are able to try and correct your queries used in DoDeleteExpiredQuarantineList and UpdateListViewQuarantine - in case you can send them to us.</P><P>Jan</P><P>&nbsp;</P><P><BR>&nbsp;</P>]]>
   </description>
   <pubDate>Tue, 02 Sep 2003 07:03:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1834&amp;PID=1841&amp;title=errors-while-using-oracle#1841</guid>
  </item> 
  <item>
   <title><![CDATA[Errors while using Oracle : Jan, We tested the scripts with...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1834&amp;PID=1839&amp;title=errors-while-using-oracle#1839</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=8">LogSat</a><br /><strong>Subject:</strong> 1834<br /><strong>Posted:</strong> 01 September 2003 at 10:17pm<br /><br /><P>Jan,</P><P>We tested the scripts with Oracle 8i, can you please let us know what version you are using? Yes, if you can send us the scripts that work for you we can see if the same correction will work for the other errors you are seing.</P><P>Roberto F.<BR>LogSat Software</P>]]>
   </description>
   <pubDate>Mon, 01 Sep 2003 22:17:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1834&amp;PID=1839&amp;title=errors-while-using-oracle#1839</guid>
  </item> 
  <item>
   <title><![CDATA[Errors while using Oracle : I found this in Oracle manual: ORA-00911:...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1834&amp;PID=1836&amp;title=errors-while-using-oracle#1836</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=2">Guests</a><br /><strong>Subject:</strong> 1834<br /><strong>Posted:</strong> 01 September 2003 at 9:38am<br /><br /><P>I found this in Oracle manual:</P><P>ORA-00911: invalid character<BR>Cause: Special characters are valid only in certain places. If special characters<BR>other than $, _, and # are used in a name and the name is not enclosed in double<BR>quotation marks (”), this message will be issued. One exception to this rule<BR>is for database names; in this case, double quotes are stripped out and ignored.<BR>Action: Remove the invalid character from the statement or enclose the object<BR>name in double quotation marks.<BR></P><P>I can send the reworked oracle script.</P><P>Jan</P>]]>
   </description>
   <pubDate>Mon, 01 Sep 2003 09:38:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1834&amp;PID=1836&amp;title=errors-while-using-oracle#1836</guid>
  </item> 
  <item>
   <title><![CDATA[Errors while using Oracle : Jan, If you could please try...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1834&amp;PID=1835&amp;title=errors-while-using-oracle#1835</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=8">LogSat</a><br /><strong>Subject:</strong> 1834<br /><strong>Posted:</strong> 01 September 2003 at 9:31am<br /><br /><P>Jan,</P><P>If you could please try to translate the error "chybný znak" in english we can try to understand what is happening.</P><P>Roberto F.<BR>LogSat Software</P>]]>
   </description>
   <pubDate>Mon, 01 Sep 2003 09:31:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1834&amp;PID=1835&amp;title=errors-while-using-oracle#1835</guid>
  </item> 
  <item>
   <title><![CDATA[Errors while using Oracle : I tried to use spamfilter with...]]></title>
   <link>https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1834&amp;PID=1834&amp;title=errors-while-using-oracle#1834</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.logsat.com/spamfilter/forums/member_profile.asp?PF=2">Guests</a><br /><strong>Subject:</strong> 1834<br /><strong>Posted:</strong> 01 September 2003 at 9:02am<br /><br /><P>I tried to use spamfilter with MSSQL and it was ok. Next, I tried to use Oracle. First I met the error during creating tables (table tblServers is not included in the script and table tblQuarantine is missing one column - serverid). I corrected these errors. I met another errors in activity log:</P><P>09.01.03 14:55:06:625 -- Exception occurred during DoDeleteExpiredQuarantineList: ORA-00911: chybný znak<BR>09.01.03 14:55:12:875 -- Exception occurred during UpdateListViewQuarantine: ORA-00911: chybný znak</P><P>What should I do?</P><P>Thanks.</P><P>Jan Brychta</P><P>&nbsp;</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Mon, 01 Sep 2003 09:02:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.logsat.com/spamfilter/forums/forum_posts.asp?TID=1834&amp;PID=1834&amp;title=errors-while-using-oracle#1834</guid>
  </item> 
 </channel>
</rss>