First i tried odbc but it gave this error. Then i removed everything (FS binaries, configs, sources etc.), downloaded FS again and compiled it without odbc support but again same problem. I can see sqlite files being created by freeswitch in /usr/local/freeswitch/db folder but for some reason, FS still can&#39;t find any table in it. The problem is not with just interface table but all tables, include table related to sofia sip, voice mail etc. etc.<br>
<br>I am using Ubuntu 10.04 32bit desktop edition, on Intel x86 with following freeswitch configuration,<br><br>./configure --enable-optimization --disable-debug --enable-visibility --enable-zrtp --enable-core-odbc-support --with-openssl --with-java=/usr/lib/jvm/java-6-sun --with-python --with-erlang<br>
<br>FS compiles without any problem as all dependencies are already pre-installed. But after installation when i start it with following options as root user,<br><br>./freeswitch -hp -waste -core<br><br>The console soon become full with switch_core_sqldb.c errors and system gets to slow down till it hangs.<br>
<br>I have tried different combinations of configure flags (e.g. removing zrtp and odbc support etc.) but no success.<br><br>I have examined the sqlite files created by FS but it seems each file contains only one table, while i suspect there should be more then one tables, for example for sofia sip i remember there is a table for sip registrations, sip presence, sip dialog etc. etc. but when i open /usr/local/freeswitch/db/sofia_reg_internal.db file in SQLite manager, there is only one empty table named sip_recovery.<br>
<br>Same thing happens when using odbc, only one table sip_recovery gets created for sofia sip, the FS continues to complain that it can&#39;t find any table.<br><br>Please help as i have wasted 2 days without any luck on this.<br>
<br>Thank you.<br><br><br><div class="gmail_quote">On Wed, May 12, 2010 at 6:49 PM, Rupa Schomaker <span dir="ltr">&lt;<a href="mailto:rupa@rupa.com">rupa@rupa.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
THat commit just removes a .rej file, don&#39;t see how it can affect<div><br></div><div><div>$ git diff --stat 1d2c64d33bf033788c5521c212b861ba11c229af..5530de66ef6880621086c6276731504459eb6709</div><div><br></div><div>(those are the two SHA1s I&#39;m getting stats on,  first is tony&#39;s just before my changes, second is mine)</div>

<div><br></div><div><div> src/include/switch_types.h.orig                    | 1714 ------</div><div> .../mod_conference/mod_conference.c.orig           | 6343 --------------------</div><div> .../mod_conference/mod_conference.c.rej            |   50 -</div>

<div> src/mod/formats/mod_sndfile/mod_sndfile.c.orig     |  462 --</div><div> .../languages/mod_python/mod_python_wrap.cpp.rej   |   38 -</div><div> src/switch_core.c.orig                             | 2018 -------</div>
<div>
 src/switch_time.c.orig                             | 1962 ------</div><div> 7 files changed, 0 insertions(+), 12587 deletions(-)</div></div><div><br></div><div><br></div><div>Don&#39;t see how removing patch droppings can possibly cause your problem.</div>

</div><div><br></div><div>The real issue is that the interfaces table doesn&#39;t exist.  The last error is because the table didn&#39;t exist for the records to be inserted into.  As with all core tables, this SHOULD be auto-created.</div>

<div><br></div><div>Are you running against odbc for core or sqlite?</div><div><br><div class="gmail_quote"><div><div></div><div class="h5">On Wed, May 12, 2010 at 6:48 AM, Muhammad Shahzad <span dir="ltr">&lt;<a href="mailto:shaheryarkh@googlemail.com" target="_blank">shaheryarkh@googlemail.com</a>&gt;</span> wrote:<br>

</div></div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"><div><div></div><div class="h5">Hi,<br><br>For last two days i am trying to setup a freeswitch box for an voip application testing against it. FreeSWITCH compiles successfully but when i try to start it i get a lot critical errors from switch_core_sqldb.c, e.g.<br>


<br><br><span style="color: rgb(255, 0, 0);">2010-05-12 16:35:42.691358 [ERR] switch_core_sqldb.c:404 SQL ERR [no such table: interfaces]</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">insert into interfaces (type,name,description,syntax,ikey,filename,hostname) values(&#39;chat&#39;,&#39;event&#39;,&#39;&#39;,&#39;&#39;,&#39;mod_dptools&#39;,&#39;/usr/local/freeswitch/mod/mod_dptools.so&#39;,&#39;lenovo&#39;);</span><br style="color: rgb(255, 0, 0);">


<span style="color: rgb(255, 0, 0);">insert into interfaces (type,name,description,syntax,ikey,filename,hostname) values(&#39;chat&#39;,&#39;api&#39;,&#39;&#39;,&#39;&#39;,&#39;mod_dptools&#39;,&#39;/usr/local/freeswitch/mod/mod_dptools.so&#39;,&#39;lenovo&#39;);</span><br style="color: rgb(255, 0, 0);">


<span style="color: rgb(255, 0, 0);">insert into interfaces (type,name,description,syntax,ikey,filename,hostname) values(&#39;api&#39;,&#39;expr&#39;,&#39;Eval an expression&#39;,&#39;&lt;expr&gt;&#39;,&#39;mod_expr&#39;,&#39;/usr/local/freeswitch/mod/mod_expr.so&#39;,&#39;lenovo&#39;);</span><br style="color: rgb(255, 0, 0);">


<br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">2010-05-12 16:35:42.691419 [ERR] switch_core_sqldb.c:670 SQL ERR [no such table: interfaces]</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">2010-05-12 16:35:42.791490 [CRIT] switch_core_sqldb.c:889 SQL thread unable to commit transaction, records lost!</span><br style="color: rgb(255, 0, 0);">


<br>and it continues till my machine eventually hangs. Its happening with latest git revision, i don&#39;t know how to get revision number in git (i am not much familiar with it) but &quot;git log&quot; command give this as first line.<br>


<br>commit 5530de66ef6880621086c6276731504459eb6709<br>Author: Rupa Schomaker &lt;<a href="mailto:rupa@rupa.com" target="_blank">rupa@rupa.com</a>&gt;<br>Date:   Wed May 12 03:32:18 2010 -0500<br><br clear="all">I suspect the last line, i.e.<br>


<span style="color: rgb(255, 0, 0);">2010-05-12 16:35:42.791490 [CRIT] 
switch_core_sqldb.c:889 SQL thread unable to commit transaction, records
 lost!</span><br><br>is the reason for these errors but i am not sure why its happening.<br><br>Thank you.<br><font color="#888888"><br><br>-- <br>Muhammad Shahzad<br>-----------------------------------<br>CISCO Rich Media Communication Specialist (CRMCS)<br>


CISCO Certified Network Associate (CCNA)<br>Cell: +92 334 422 40 88<br>MSN: <a href="mailto:shari_786pk@hotmail.com" target="_blank">shari_786pk@hotmail.com</a><br>Email: <a href="mailto:shaheryarkh@googlemail.com" target="_blank">shaheryarkh@googlemail.com</a><br>



</font><br></div></div>_______________________________________________<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>-Rupa<br>
</div>
<br>_______________________________________________<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>Muhammad Shahzad<br>-----------------------------------<br>CISCO Rich Media Communication Specialist (CRMCS)<br>CISCO Certified Network Associate (CCNA)<br>Cell: +92 334 422 40 88<br>
MSN: <a href="mailto:shari_786pk@hotmail.com">shari_786pk@hotmail.com</a><br>Email: <a href="mailto:shaheryarkh@googlemail.com">shaheryarkh@googlemail.com</a><br>