<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2800.1400" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV>
<DIV><FONT face=Arial size=2>Sure thing... </FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV>Luke Catranis, Seshu Kanuri, and any others:</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Asterisk CVS-HEAD, CDR with MSSQL 
7.0&nbsp;database; via unixODBC and FreeTDS:</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>cd /usr/src &amp;&amp;<BR>rm -fr unixODBC-2.2.9 
&amp;&amp;<BR>tar -zxvf unixODBC-2.2.9.tar.gz &amp;&amp;<BR>cd unixODBC-2.2.9 
&amp;&amp;<BR>./configure --sysconfdir=/etc --prefix=/usr --disable-gui 
&amp;&amp;<BR>make &amp;&amp;<BR>make install</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>cd /usr/src &amp;&amp;<BR>rm -fr freetds-0.62.4 
&amp;&amp;<BR>tar -zxvf freetds-0.62.4.tar.gz &amp;&amp;<BR>cd freetds-0.62.4 
&amp;&amp;<BR>./configure --prefix=/usr --with-tdsver=7.0 
--with-unixodbc=/usr/lib &amp;&amp;<BR>make &amp;&amp;<BR>make 
install</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>ldconfig -v</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>/etc/rc.d/init.d/asterisk stop</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>cd /usr/src/asterisk &amp;&amp;<BR>make clean 
&amp;&amp;<BR>make update &amp;&amp;<BR>make &amp;&amp;<BR>make 
install</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>cat &gt; /etc/odbcinst.ini &lt;&lt; 
"EOF"<BR>[FreeTDS]<BR>Description&nbsp;&nbsp;&nbsp; = FreeTDS ODBC driver for 
MSSQL<BR>Driver&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = 
/usr/lib/libtdsodbc.so<BR>Setup&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
= /usr/lib/libtdsS.so<BR>FileUsage&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = 
1<BR>EOF</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>cat &gt; /etc/odbc.ini &lt;&lt; 
"EOF"<BR>[MSSQL-asterisk]<BR>description&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
= Asterisk ODBC for 
MSSQL<BR>driver&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 

FreeTDS<BR>server&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 

IP.IP.IP.IP<BR>port&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 

1433<BR>database&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 

your_database_name_here<BR>tds_version&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 

7.0<BR>language&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
= us_english<BR>EOF</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>[ -f /etc/asterisk/cdr_tds.conf ] &gt; 
/etc/asterisk/cdr_tds.conf</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>cat &gt; /etc/asterisk/cdr_odbc.conf &lt;&lt; 
"EOF"<BR>[global]<BR>dsn=MSSQL-asterisk<BR>username=your_sql_username_here<BR>password=your_sql_password_here<BR>loguniqueid=yes<BR>EOF</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>cat &gt; cdr_table.sql &lt;&lt; "EOF"<BR>CREATE 
TABLE cdr ( <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[calldate]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[datetime]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
NOT NULL ,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[clid]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [varchar] 
(80)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NOT NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[src]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [varchar] 
(80)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NOT NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[dst]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [varchar] 
(80)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NOT NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[dcontext]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [varchar] 
(80)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NOT NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[channel]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [varchar] 
(80)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NOT NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [dstchannel]&nbsp;&nbsp;&nbsp; 
[varchar] (80)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NOT NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[lastapp]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [varchar] 
(80)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NOT NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[lastdata]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [varchar] 
(80)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NOT NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[duration]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[int]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
NOT NULL ,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[billsec]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[int]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
NOT NULL ,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[disposition]&nbsp;&nbsp; [varchar] 
(45)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NOT NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[amaflags]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[int]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
NOT NULL ,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[accountcode]&nbsp;&nbsp; [varchar] 
(20)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NOT NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[uniqueid]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [varchar] 
(32)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NOT NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[userfield]&nbsp;&nbsp;&nbsp;&nbsp; [varchar] 
(255)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NOT 
NULL<BR>)<BR>GO<BR>EOF</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>echo "modify for your IP, database, username, and 
password"</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>/etc/rc.d/init.d/asterisk start</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Asterisk CVS-HEAD, CDR with MSSQL 
7.0&nbsp;database; via&nbsp;FreeTDS directly (I like better):</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>cd /usr/src &amp;&amp;<BR>rm -fr freetds-0.62.4 
&amp;&amp;<BR>tar -zxvf freetds-0.62.4.tar.gz &amp;&amp;<BR>cd freetds-0.62.4 
&amp;&amp;<BR>./configure --prefix=/usr --with-tdsver=7.0 &amp;&amp;<BR>make 
&amp;&amp;<BR>make install</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>ldconfig -v</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>/etc/rc.d/init.d/asterisk stop</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>cd /usr/src/asterisk &amp;&amp;<BR>make clean 
&amp;&amp;<BR>make update &amp;&amp;<BR>make &amp;&amp;<BR>make 
install</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>[ -f /etc/asterisk/cdr_odbc.conf ] &gt; 
/etc/asterisk/cdr_odbc.conf</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>cat &gt; /etc/asterisk/cdr_tds.conf &lt;&lt; 
"EOF"<BR>[global]<BR>hostname=IP.IP.IP.IP<BR>port=1433<BR>dbname=your_database_name_here<BR>user=your_sql_username_here<BR>password=your_sql_password_here<BR>charset=BIG5<BR>EOF</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>cat &gt; cdr_table.sql &lt;&lt; "EOF"<BR>CREATE 
TABLE cdr (<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[accountcode]&nbsp;&nbsp; [varchar] 
(20)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[src]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [varchar] 
(80)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[dst]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [varchar] 
(80)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[dcontext]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [varchar] 
(80)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[clid]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [varchar] 
(80)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[channel]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [varchar] 
(80)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [dstchannel]&nbsp;&nbsp;&nbsp; 
[varchar] (80)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[lastapp]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [varchar] 
(80)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[lastdata]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [varchar] 
(80)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[start]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[datetime]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
NULL ,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[answer]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[datetime]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
NULL ,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[end]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[datetime]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
NULL ,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[duration]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[int]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
NULL ,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[billsec]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[int]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
NULL ,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [disposition]&nbsp;&nbsp; 
[varchar] (20)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[amaflags]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [varchar] 
(16)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NULL 
,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
[uniqueid]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [varchar] 
(32)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
NULL<BR>)<BR>GO<BR>EOF</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>echo "modify for your IP, database, username, and 
password"</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>/etc/rc.d/init.d/asterisk start</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Duane Cox</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<BLOCKQUOTE dir=ltr 
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
  <DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
  <DIV 
  style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> 
  <A title=seshu.kanuri@citigroup.com 
  href="mailto:seshu.kanuri@citigroup.com">Kanuri, Seshu</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>To:</B> <A 
  title=asterisk-users@lists.digium.com 
  href="mailto:asterisk-users@lists.digium.com">asterisk-users@lists.digium.com</A> 
  </DIV>
  <DIV style="FONT: 10pt arial"><B>Cc:</B> <A title=duanec@mail.illicom.net 
  href="mailto:duanec@mail.illicom.net">duanec@mail.illicom.net</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>Sent:</B> Wednesday, July 28, 2004 3:55 
  PM</DIV>
  <DIV style="FONT: 10pt arial"><B>Subject:</B> RE: [Asterisk-Users] MS SQL 
  &amp; Free TDS</DIV>
  <DIV><FONT face=Arial size=2></FONT><FONT face=Arial size=2></FONT><FONT 
  face=Arial size=2></FONT><BR></DIV>
  <DIV><FONT face=Arial color=#0000ff size=2><SPAN 
  class=475585320-28072004>Duane,</SPAN></FONT></DIV>
  <DIV><FONT face=Arial color=#0000ff size=2><SPAN 
  class=475585320-28072004></SPAN></FONT>&nbsp;</DIV>
  <DIV><FONT face=Arial color=#0000ff size=2><SPAN class=475585320-28072004>Can 
  you please Post your Config files and any Steps necessary to make a clean 
  install, for the benefit of everyone.</SPAN></FONT></DIV>
  <DIV><FONT face=Arial color=#0000ff size=2><SPAN 
  class=475585320-28072004></SPAN></FONT>&nbsp;</DIV>
  <DIV><FONT face=Arial color=#0000ff size=2><SPAN 
  class=475585320-28072004>Thanks</SPAN></FONT></DIV>
  <DIV><FONT face=Arial color=#0000ff size=2><SPAN 
  class=475585320-28072004></SPAN></FONT>&nbsp;</DIV>
  <DIV><FONT face=Arial color=#0000ff size=2><SPAN 
  class=475585320-28072004>Seshu Kanuri</SPAN></FONT></DIV>
  <BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px">
    <DIV class=OutlookMessageHeader dir=ltr align=left><FONT face=Tahoma 
    size=2>-----Original Message-----<BR><B>From:</B> <A 
    href="mailto:asterisk-users-admin@lists.digium.com">asterisk-users-admin@lists.digium.com</A> 
    [mailto:asterisk-users-admin@lists.digium.com]<B>On Behalf Of </B>Duane 
    Cox<BR><B>Sent:</B> Wednesday, July 28, 2004 2:34 PM<BR><B>To:</B> <A 
    href="mailto:asterisk-users@lists.digium.com">asterisk-users@lists.digium.com</A><BR><B>Subject:</B> 
    Re: [Asterisk-Users] MS SQL &amp; Free TDS<BR><BR></FONT></DIV>
    <DIV><FONT face=Arial size=2>I've had both cdr_odbc.c and cdr_tds.c working 
    with MSSQL</FONT></DIV>
    <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
    <DIV><FONT face=Arial size=2>What kind of specific problem are you having, 
    we can get it working.</FONT></DIV>
    <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
    <DIV>&nbsp;</DIV>
    <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
    <BLOCKQUOTE 
    style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
      <DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
      <DIV 
      style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> 
      <A title=luke@catranis.net href="mailto:luke@catranis.net">Luke 
      Catranis</A> </DIV>
      <DIV style="FONT: 10pt arial"><B>To:</B> <A 
      title=asterisk-users@lists.digium.com 
      href="mailto:asterisk-users@lists.digium.com">asterisk-users@lists.digium.com</A> 
      </DIV>
      <DIV style="FONT: 10pt arial"><B>Sent:</B> Wednesday, July 28, 2004 10:16 
      AM</DIV>
      <DIV style="FONT: 10pt arial"><B>Subject:</B> [Asterisk-Users] MS SQL 
      &amp; Free TDS</DIV>
      <DIV><BR></DIV>Help!<BR>I've been using mysql for cdr storage, I need to 
      switch to MS SQL. I must be<BR>stupid or something but I cannot figure out 
      how to setup the cdr_tds. I have<BR>FreeTDS configured properly, but my 
      unixodbc is not working properly<BR>either... I'd be happy with either 
      solution, but I'm in need of assistance.<BR><BR><BR>Luke 
      Catranis<BR><BR>_______________________________________________<BR>Asterisk-Users 
      mailing list<BR><A 
      href="mailto:Asterisk-Users@lists.digium.com">Asterisk-Users@lists.digium.com</A><BR><A 
      href="http://lists.digium.com/mailman/listinfo/asterisk-users">http://lists.digium.com/mailman/listinfo/asterisk-users</A><BR>To 
      UNSUBSCRIBE or update options visit:<BR>&nbsp;&nbsp; <A 
      href="http://lists.digium.com/mailman/listinfo/asterisk-users">http://lists.digium.com/mailman/listinfo/asterisk-users</A><BR></BLOCKQUOTE></BLOCKQUOTE></BLOCKQUOTE></DIV>
<BLOCKQUOTE dir=ltr 
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
  <DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
  <DIV 
  style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> 
  <A title=seshu.kanuri@citigroup.com 
  href="mailto:seshu.kanuri@citigroup.com">Kanuri, Seshu</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>To:</B> <A 
  title=asterisk-users@lists.digium.com 
  href="mailto:asterisk-users@lists.digium.com">asterisk-users@lists.digium.com</A> 
  </DIV>
  <DIV style="FONT: 10pt arial"><B>Cc:</B> <A title=duanec@mail.illicom.net 
  href="mailto:duanec@mail.illicom.net">duanec@mail.illicom.net</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>Sent:</B> Wednesday, July 28, 2004 3:55 
  PM</DIV>
  <DIV style="FONT: 10pt arial"><B>Subject:</B> RE: [Asterisk-Users] MS SQL 
  &amp; Free TDS</DIV>
  <DIV><BR></DIV>
  <DIV><FONT face=Arial color=#0000ff size=2><SPAN 
  class=475585320-28072004>Duane,</SPAN></FONT></DIV>
  <DIV><FONT face=Arial color=#0000ff size=2><SPAN 
  class=475585320-28072004></SPAN></FONT>&nbsp;</DIV>
  <DIV><FONT face=Arial color=#0000ff size=2><SPAN class=475585320-28072004>Can 
  you please Post your Config files and any Steps necessary to make a clean 
  install, for the benefit of everyone.</SPAN></FONT></DIV>
  <DIV><FONT face=Arial color=#0000ff size=2><SPAN 
  class=475585320-28072004></SPAN></FONT>&nbsp;</DIV>
  <DIV><FONT face=Arial color=#0000ff size=2><SPAN 
  class=475585320-28072004>Thanks</SPAN></FONT></DIV>
  <DIV><FONT face=Arial color=#0000ff size=2><SPAN 
  class=475585320-28072004></SPAN></FONT>&nbsp;</DIV>
  <DIV><FONT face=Arial color=#0000ff size=2><SPAN 
  class=475585320-28072004>Seshu Kanuri</SPAN></FONT></DIV>
  <BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px">
    <DIV class=OutlookMessageHeader dir=ltr align=left><FONT face=Tahoma 
    size=2>-----Original Message-----<BR><B>From:</B> <A 
    href="mailto:asterisk-users-admin@lists.digium.com">asterisk-users-admin@lists.digium.com</A> 
    [mailto:asterisk-users-admin@lists.digium.com]<B>On Behalf Of </B>Duane 
    Cox<BR><B>Sent:</B> Wednesday, July 28, 2004 2:34 PM<BR><B>To:</B> <A 
    href="mailto:asterisk-users@lists.digium.com">asterisk-users@lists.digium.com</A><BR><B>Subject:</B> 
    Re: [Asterisk-Users] MS SQL &amp; Free TDS<BR><BR></FONT></DIV>
    <DIV><FONT face=Arial size=2>I've had both cdr_odbc.c and cdr_tds.c working 
    with MSSQL</FONT></DIV>
    <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
    <DIV><FONT face=Arial size=2>What kind of specific problem are you having, 
    we can get it working.</FONT></DIV>
    <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
    <DIV>&nbsp;</DIV>
    <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
    <BLOCKQUOTE 
    style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
      <DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
      <DIV 
      style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> 
      <A title=luke@catranis.net href="mailto:luke@catranis.net">Luke 
      Catranis</A> </DIV>
      <DIV style="FONT: 10pt arial"><B>To:</B> <A 
      title=asterisk-users@lists.digium.com 
      href="mailto:asterisk-users@lists.digium.com">asterisk-users@lists.digium.com</A> 
      </DIV>
      <DIV style="FONT: 10pt arial"><B>Sent:</B> Wednesday, July 28, 2004 10:16 
      AM</DIV>
      <DIV style="FONT: 10pt arial"><B>Subject:</B> [Asterisk-Users] MS SQL 
      &amp; Free TDS</DIV>
      <DIV><BR></DIV>Help!<BR>I've been using mysql for cdr storage, I need to 
      switch to MS SQL. I must be<BR>stupid or something but I cannot figure out 
      how to setup the cdr_tds. I have<BR>FreeTDS configured properly, but my 
      unixodbc is not working properly<BR>either... I'd be happy with either 
      solution, but I'm in need of assistance.<BR><BR><BR>Luke 
      Catranis<BR><BR>_______________________________________________<BR>Asterisk-Users 
      mailing list<BR><A 
      href="mailto:Asterisk-Users@lists.digium.com">Asterisk-Users@lists.digium.com</A><BR><A 
      href="http://lists.digium.com/mailman/listinfo/asterisk-users">http://lists.digium.com/mailman/listinfo/asterisk-users</A><BR>To 
      UNSUBSCRIBE or update options visit:<BR>&nbsp;&nbsp; <A 
      href="http://lists.digium.com/mailman/listinfo/asterisk-users">http://lists.digium.com/mailman/listinfo/asterisk-users</A><BR></BLOCKQUOTE></BLOCKQUOTE></BLOCKQUOTE></BODY></HTML>