Faisal,<br><br>A few things to keep in mind: <br><br>In cdr_csv.conf.xml you need to specify the correct template. There are several templates specified. I don&#39;t know much about the perl script mentioned there but I don&#39;t know if that is how I would approach the situation personally. One of the templates is called &quot;sql&quot; and it creates SQL statement for each cdr. You could literally pipe the contents of the cdr file into MySQL and it will load the data into your table. However you will need to handle the log file rotation. Some people use cron to send a HUP signal to the freeswitch process which then rotates the log and Master.csv files. I recommend you look at the cdr-csv directory before and after a rotation so that you can see exactly what happens.<br>
<br>Here&#39;s a brief checklist for you to help you get going:<br>1 select the &quot;sql&quot; template in cdr_csv.conf.xml<br> &nbsp;&lt;param name=&quot;default-template&quot; value=&quot;sql&quot;/&gt;<br><br>2 create a MySQL database for your cdr data<br>
<br>3 create a table called &quot;cdr&quot; (or rename the table used in the &quot;sql&quot; template)<br> &nbsp;the table needs to have all the fields laid out the way the template lays them out<br> &nbsp;this page can be used as a reference to get you started, but note the these fields are NOT laid out the same way the sql template lays them out<br>
 &nbsp;<a href="http://wiki.freeswitch.org/wiki/Mod_cdr#MySQL_Schema">http://wiki.freeswitch.org/wiki/Mod_cdr#MySQL_Schema</a><br><br>4 decide how frequently you want to rotate log files and then set up a cron job that sends the HUP signal:<br>
 <span style="font-family: courier new,monospace;">&nbsp;kill -hup `cat /usr/local/freeswitch/log/freeswitch.pid`</span><br> &nbsp;After the kill -hup is sent your /usr/local/freeswitch/log/cdr-csv will look something like this:<br>
 <span style="font-family: courier new,monospace;">&nbsp;-rw------- 1 root root &nbsp; &nbsp; &nbsp; &nbsp;0 Dec 13 15:24 Master.csv</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> &nbsp;-rw------- 1 root root &nbsp;1473657 Dec 12 22:13 Master.csv.2008-12-13-15-24-16</span><br>
<br>&nbsp; The file Master.csv.YYYY-MM-DD-hh-mm-ss now has the most recent CDR&#39;s.<br><br>5 run the most recent file through mysql. it is essentially just a text file with a bunch of INSERT INTO statements<br>&nbsp; mysql -u user -p password &lt; Master.csv.YYYY-MM-DD-hh-mm-ss<br>
&nbsp; rm -f Master.csv.YYYY-MM-DD-hh-mm-ss<br><br>steps 4 and 5 could all be in the cron job which just has a script do all the work. if you need assistance with setting up scripts and doing cron jobs then i recommend that you manually do the steps one at a time and see exactly what is happening and then learn how to do the shell script + cron job.<br>
<br>Good luck!<br>-MC<br><br>P.S. - if anyone already has done all of this and is willing to share his/her experiences please contact me off list as I would like to talk about getting a wiki page set up that is dedicated to this sort of thing.<br>
<br>On Sat, Dec 13, 2008 at 1:44 AM, Faisal Maqsoodi &lt;<a href="mailto:faisalmaqsoodi@yahoo.com">faisalmaqsoodi@yahoo.com</a>&gt; wrote:<br>&gt; How can i interface fs with mysql in order to maintain calls record like<br>
&gt; caller id and time n date of call etc. I ve worked on xml cdr but it<br>&gt; contains too much info, more than i need and in a format which is not easily<br>&gt; understandable. I also tried perl coding mentioned on the link at the bottom<br>
&gt; of the page<br>&gt; <a href="http://wiki.freeswitch.org/wiki/Mod_cdr_csv">http://wiki.freeswitch.org/wiki/Mod_cdr_csv</a>, but so many error msgs r<br>&gt; displayed during its execution. Is there any easy method for that. Plz help<br>
&gt; me.<br>&gt; &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;&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;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>&gt; faisal<br>&gt;<br>&gt; _______________________________________________<br>&gt; Freeswitch-users mailing list<br>
&gt; <a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br>&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>&gt; <a href="http://www.freeswitch.org">http://www.freeswitch.org</a><br>
&gt;<br>&gt;<br><br>