<br><font size=2 face="sans-serif">Using Matthew's excellent query and
the SQL built-in dateadd function, you can run queries with results for
human eyes.</font>
<br>
<br><font size=2 face="sans-serif">Install Matthew's function and then
run somthing like this:</font>
<br>
<br><font size=2 face="sans-serif">Select </font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; dbo.decimaltoip(origipaddr)as
origipaddr, </font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; dbo.decimaltoip(destipaddr)as
destipaddr, </font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; callingpartynumber,
</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; originalcalledpartynumber,
</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; finalcalledpartynumber,
</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; dateadd(ss,datetimeconnect,'19700101'),
</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; dateadd(ss,datetimedisconnect,'19700101'),
</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; origdevicename,
</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; destdevicename</font>
<br>
<br><font size=2 face="sans-serif">From</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; calldetailrecord</font>
<br>
<br><font size=2 face="sans-serif">where</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; dateadd(ss,datetimeconnect,'19700101')
&gt; '2007-08-01 16:20:51.000'</font>
<br>
<br><font size=2 face="sans-serif"><br>
<br>
<br>
Luis Yrigoyen<br>
<br>
Network Operations<br>
Bayview Financial, L.P.<br>
4425 Ponce de Leon Blvd.<br>
Coral Gables, FL 33146<br>
<br>
T 305.817.5083<br>
F 305.646.4744<br>
E luisyrigoyen@bayviewfinancial.com<br>
</font>
<br>
<br>
<br>
<table width=100%>
<tr valign=top>
<td width=40%><font size=1 face="sans-serif"><b>Matthew Saskin &lt;matt@saskin.net&gt;</b>
</font>
<br><font size=1 face="sans-serif">Sent by: cisco-voip-bounces@puck.nether.net</font>
<p><font size=1 face="sans-serif">08/01/2007 09:41 AM</font>
<td width=59%>
<table width=100%>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">To</font></div>
<td><font size=1 face="sans-serif">Lelio Fulgenzi &lt;lelio@uoguelph.ca&gt;</font>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">cc</font></div>
<td><font size=1 face="sans-serif">CarlosOrtiz@bayviewfinancial.com, cisco-voip@puck.nether.net</font>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">Subject</font></div>
<td><font size=1 face="sans-serif">Re: [cisco-voip] DestIPAddr field in
CDR record</font></table>
<br>
<table>
<tr valign=top>
<td>
<td></table>
<br></table>
<br>
<br>
<br><font size=2><tt>IP addresses are stored in the cdr table in a decimal
format. &nbsp;Here is <br>
an (ugly) SQL server function I wrote a while back that does the <br>
conversion to dotted decimal format....once again, it's ugly and only <br>
relatively efficient, but it works :)<br>
<br>
-matt<br>
<br>
------------------------------------------------------------<br>
------------------------------------------------------------<br>
CREATE &nbsp;function dbo.decimalToIP(@ip INT)<br>
RETURNS VARCHAR(15)<br>
AS<br>
BEGIN<br>
<br>
DECLARE @binip BINARY(4)<br>
SET @binip = CONVERT(BINARY(4),@ip)<br>
<br>
DECLARE @charip varchar(8)<br>
SET @charip = CONVERT(varchar(8),@binip)<br>
<br>
DECLARE @1 int, @2 int, @3 int, @4 int<br>
<br>
SET @4 = ASCII(SUBSTRING(@charip,1,1))<br>
SET @3 = ASCII(SUBSTRING(@charip,2,1))<br>
SET @2 = ASCII(SUBSTRING(@charip,3,1))<br>
SET @1 = ASCII(SUBSTRING(@charip,4,1))<br>
<br>
DECLARE @output varchar(15)<br>
SET @output = CONVERT(varchar,@1) + '.' + CONVERT(varchar,@2) + '.' + <br>
CONVERT(varchar,@3) + '.' + CONVERT(varchar,@4)<br>
RETURN @output<br>
<br>
END<br>
------------------------------------------------------------<br>
------------------------------------------------------------<br>
<br>
<br>
<br>
<br>
Lelio Fulgenzi wrote:<br>
&gt; The CAR/ART tool , whatever you call it.<br>
&gt; &nbsp;<br>
&gt; --------------------------------------------------------------------------------<br>
&gt; Lelio Fulgenzi, B.A.<br>
&gt; Senior Analyst (CCS) * University of Guelph * Guelph, Ontario N1G
2W1<br>
&gt; (519) 824-4120 x56354 (519) 767-1060 FAX (JNHN)<br>
&gt; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^<br>
&gt; &quot;Buffalo buffalo Buffalo buffalo buffalo buffalo Buffalo buffalo.&quot;
&nbsp; &nbsp; &nbsp;WJR<br>
&gt; <br>
&gt; &nbsp; &nbsp; ----- Original Message -----<br>
&gt; &nbsp; &nbsp; *From:* CarlosOrtiz@bayviewfinancial.com<br>
&gt; &nbsp; &nbsp; &lt;mailto:CarlosOrtiz@bayviewfinancial.com&gt;<br>
&gt; &nbsp; &nbsp; *To:* Lelio Fulgenzi &lt;mailto:lelio@uoguelph.ca&gt;<br>
&gt; &nbsp; &nbsp; *Cc:* cisco-voip@puck.nether.net &lt;mailto:cisco-voip@puck.nether.net&gt;<br>
&gt; &nbsp; &nbsp; ; cisco-voip-bounces@puck.nether.net<br>
&gt; &nbsp; &nbsp; &lt;mailto:cisco-voip-bounces@puck.nether.net&gt;<br>
&gt; &nbsp; &nbsp; *Sent:* Wednesday, August 01, 2007 9:27 AM<br>
&gt; &nbsp; &nbsp; *Subject:* Re: [cisco-voip] DestIPAddr field in CDR
record<br>
&gt; <br>
&gt; <br>
&gt; &nbsp; &nbsp; Which tool?<br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; &nbsp; &nbsp; *&quot;Lelio Fulgenzi&quot; &lt;lelio@uoguelph.ca &lt;mailto:lelio@uoguelph.ca&gt;&gt;*<br>
&gt; &nbsp; &nbsp; Sent by: cisco-voip-bounces@puck.nether.net<br>
&gt; &nbsp; &nbsp; &lt;mailto:cisco-voip-bounces@puck.nether.net&gt;<br>
&gt; <br>
&gt; &nbsp; &nbsp; 08/01/2007 09:23 AM<br>
&gt; <br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp;<br>
&gt; &nbsp; &nbsp; To<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp;&lt;CarlosOrtiz@bayviewfinancial.com<br>
&gt; &nbsp; &nbsp; &lt;mailto:CarlosOrtiz@bayviewfinancial.com&gt;&gt;<br>
&gt; &nbsp; &nbsp; cc<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp;cisco-voip@puck.nether.net &lt;mailto:cisco-voip@puck.nether.net&gt;<br>
&gt; &nbsp; &nbsp; Subject<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp;Re: [cisco-voip] DestIPAddr field in CDR record<br>
&gt; <br>
&gt; <br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp;<br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; &nbsp; &nbsp; sorry, i was using the tool. it probably did the conversion
for me.<br>
&gt; &nbsp; &nbsp; &nbsp;<br>
&gt; &nbsp; &nbsp; --------------------------------------------------------------------------------<br>
&gt; &nbsp; &nbsp; Lelio Fulgenzi, B.A.<br>
&gt; &nbsp; &nbsp; Senior Analyst (CCS) * University of Guelph * Guelph,
Ontario N1G 2W1<br>
&gt; &nbsp; &nbsp; (519) 824-4120 x56354 (519) 767-1060 FAX (JNHN)<br>
&gt; &nbsp; &nbsp; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^<br>
&gt; &nbsp; &nbsp; &quot;Buffalo buffalo Buffalo buffalo buffalo buffalo
Buffalo buffalo.&quot; &nbsp;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp;WJR<br>
&gt; &nbsp; &nbsp; ----- Original Message -----<br>
&gt; &nbsp; &nbsp; *From:* _CarlosOrtiz@bayviewfinancial.com_<br>
&gt; &nbsp; &nbsp; &lt;mailto:CarlosOrtiz@bayviewfinancial.com&gt;<br>
&gt; &nbsp; &nbsp; *To:* _Lelio Fulgenzi_ &lt;mailto:lelio@uoguelph.ca&gt;<br>
&gt; &nbsp; &nbsp; *Cc:* _cisco-voip@puck.nether.net_ &lt;mailto:cisco-voip@puck.nether.net&gt;<br>
&gt; &nbsp; &nbsp; *Sent:* Wednesday, August 01, 2007 9:16 AM<br>
&gt; &nbsp; &nbsp; *Subject:* Re: [cisco-voip] DestIPAddr field in CDR
record<br>
&gt; <br>
&gt; <br>
&gt; &nbsp; &nbsp; I see a 9 digit numeric number. &nbsp; Are you looking
in the CDR<br>
&gt; &nbsp; &nbsp; database, calldetailrecord table? &nbsp;I started searching
the archives<br>
&gt; &nbsp; &nbsp; and I did find this email which you posted a reply to
!<br>
&gt; <br>
&gt; <br>
&gt; &nbsp; &nbsp; *_lelio at uoguelph_*<br>
&gt; &nbsp; &nbsp; &lt;http://www.gossamer-threads.com/lists/engine?user=2532;list=cisco&gt;<br>
&gt; <br>
&gt; &nbsp; &nbsp; Sep 27, 2006, 5:00 PM<br>
&gt; <br>
&gt; &nbsp; &nbsp; Post #2 of 4 (258 views) _<br>
&gt; &nbsp; &nbsp; __Permalink_<br>
&gt; &nbsp; &nbsp; &lt;http://www.gossamer-threads.com/lists/cisco/voip/52547#52547&gt;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>
&gt; &nbsp; &nbsp; *Re: CDR IP Address Conversion* _Remove Highlighting_<br>
&gt; &nbsp; &nbsp; &lt;http://www.gossamer-threads.com/lists/cisco/voip/52547?nohighlight=1#52547&gt;<br>
&gt; &nbsp; &nbsp; [_In reply to_<br>
&gt; &nbsp; &nbsp; &lt;http://www.gossamer-threads.com/lists/cisco/voip/52546?search_string=CDR;#52546&gt;]<br>
&gt; <br>
&gt; &nbsp; &nbsp; ------------------------------------------------------------------------<br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; &nbsp; &nbsp; found this using google... _<br>
&gt; &nbsp; &nbsp; __<br>
&gt; &nbsp; &nbsp; __http://www.cisco.com/en/US/products/sw/voicesw/ps556/prod_troubleshooting_guide_chapter09186a0080382d82.html#wp1003527_<br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; &nbsp; &nbsp; ----- Original Message -----<br>
&gt; &nbsp; &nbsp; From: STEVEN CASPER<br>
&gt; &nbsp; &nbsp; To: cisco-voip[at]puck.nether.net<br>
&gt; &nbsp; &nbsp; Sent: Wednesday, September 27, 2006 7:55 PM<br>
&gt; &nbsp; &nbsp; Subject: [cisco-voip] *CDR* IP Address Conversion<br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; &nbsp; &nbsp; Does anyone have a tool or formula they could share
that can be used to<br>
&gt; &nbsp; &nbsp; convert the signed decimal value in the *CDR* database
to an IP<br>
&gt; &nbsp; &nbsp; address?<br>
&gt; <br>
&gt; &nbsp; &nbsp; Thanks!<br>
&gt; &nbsp; &nbsp; Steve<br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; &nbsp; &nbsp; *&quot;Lelio Fulgenzi&quot; &lt;lelio@uoguelph.ca&gt;*<br>
&gt; &nbsp; &nbsp; Sent by: cisco-voip-bounces@puck.nether.net<br>
&gt; <br>
&gt; &nbsp; &nbsp; 08/01/2007 09:10 AM<br>
&gt; <br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp;<br>
&gt; &nbsp; &nbsp; To<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp;&lt;cisco-voip@puck.nether.net&gt;, &lt;CarlosOrtiz@bayviewfinancial.com&gt;<br>
&gt; &nbsp; &nbsp; cc<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp;<br>
&gt; &nbsp; &nbsp; Subject<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp;Re: [cisco-voip] DestIPAddr field in CDR record<br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp;<br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; &nbsp; &nbsp; I see dotted decimal form a.b.c.d<br>
&gt; &nbsp; &nbsp; &nbsp;<br>
&gt; &nbsp; &nbsp; what do you see?<br>
&gt; &nbsp; &nbsp; &nbsp;<br>
&gt; &nbsp; &nbsp; --------------------------------------------------------------------------------<br>
&gt; &nbsp; &nbsp; Lelio Fulgenzi, B.A.<br>
&gt; &nbsp; &nbsp; Senior Analyst (CCS) * University of Guelph * Guelph,
Ontario N1G 2W1<br>
&gt; &nbsp; &nbsp; (519) 824-4120 x56354 (519) 767-1060 FAX (JNHN)<br>
&gt; &nbsp; &nbsp; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^<br>
&gt; &nbsp; &nbsp; &quot;Buffalo buffalo Buffalo buffalo buffalo buffalo
Buffalo buffalo.&quot; &nbsp;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp;WJR<br>
&gt; &nbsp; &nbsp; ----- Original Message ----- *<br>
&gt; &nbsp; &nbsp; From:* _CarlosOrtiz@bayviewfinancial.com_<br>
&gt; &nbsp; &nbsp; &lt;mailto:CarlosOrtiz@bayviewfinancial.com&gt; *<br>
&gt; &nbsp; &nbsp; To:* _cisco-voip@puck.nether.net_ &lt;mailto:cisco-voip@puck.nether.net&gt;
*<br>
&gt; &nbsp; &nbsp; Sent:* Wednesday, August 01, 2007 8:56 AM *<br>
&gt; &nbsp; &nbsp; Subject:* [cisco-voip] DestIPAddr field in CDR record<br>
&gt; <br>
&gt; <br>
&gt; &nbsp; &nbsp; When viewing the DestIPAddr for a call in the CDR database
of the<br>
&gt; &nbsp; &nbsp; calldetailrecord table a numeric number is shown. &nbsp;Anyone
know how<br>
&gt; &nbsp; &nbsp; to convert this to IP address format?<br>
&gt; <br>
&gt; &nbsp; &nbsp; Carlos<br>
&gt; <br>
&gt; &nbsp; &nbsp; ------------------------------------------------------------------------<br>
&gt; <br>
&gt; &nbsp; &nbsp; _______________________________________________<br>
&gt; &nbsp; &nbsp; cisco-voip mailing list_<br>
&gt; &nbsp; &nbsp; __cisco-voip@puck.nether.net_ &lt;mailto:cisco-voip@puck.nether.net&gt;_<br>
&gt; &nbsp; &nbsp; __https://puck.nether.net/mailman/listinfo/cisco-voip________________________________________________<br>
&gt; &nbsp; &nbsp; cisco-voip mailing list<br>
&gt; &nbsp; &nbsp; cisco-voip@puck.nether.net<br>
&gt; &nbsp; &nbsp; https://puck.nether.net/mailman/listinfo/cisco-voip_______________________________________________<br>
&gt; &nbsp; &nbsp; cisco-voip mailing list<br>
&gt; &nbsp; &nbsp; cisco-voip@puck.nether.net<br>
&gt; &nbsp; &nbsp; https://puck.nether.net/mailman/listinfo/cisco-voip<br>
&gt; <br>
&gt; <br>
&gt; ------------------------------------------------------------------------<br>
&gt; <br>
&gt; _______________________________________________<br>
&gt; cisco-voip mailing list<br>
&gt; cisco-voip@puck.nether.net<br>
&gt; https://puck.nether.net/mailman/listinfo/cisco-voip<br>
<br>
<br>
_______________________________________________<br>
cisco-voip mailing list<br>
cisco-voip@puck.nether.net<br>
https://puck.nether.net/mailman/listinfo/cisco-voip<br>
</tt></font>
<br>