<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>dmacias . org</title>
	<atom:link href="http://dmacias.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://dmacias.org</link>
	<description>Not quite crazy not quite sane.</description>
	<lastBuildDate>Tue, 02 Apr 2013 02:24:52 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Determine Busy Hour From UCCE TCD</title>
		<link>http://dmacias.org/2013/04/01/determine-busy-hour-from-ucce-tcd/</link>
		<comments>http://dmacias.org/2013/04/01/determine-busy-hour-from-ucce-tcd/#comments</comments>
		<pubDate>Tue, 02 Apr 2013 02:24:52 +0000</pubDate>
		<dc:creator>dmacias</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Busy Hour]]></category>
		<category><![CDATA[Cisco UCCE]]></category>
		<category><![CDATA[TCD]]></category>

		<guid isPermaLink="false">http://dmacias.org/?p=535</guid>
		<description><![CDATA[The busy call hour is a valuable piece of information in order to forecast how many phone lines you’re going to need as well as how many agents, however getting this information can be difficult and then ensuring that it’s accurate is a whole other matter.&#160; Recently I ran into an issue and I wanted [...]]]></description>
				<content:encoded><![CDATA[<p>The busy call hour is a valuable piece of information in order to forecast how many phone lines you’re going to need as well as how many agents, however getting this information can be difficult and then ensuring that it’s accurate is a whole other matter.&#160; Recently I ran into an issue and I wanted to get the busy hour for myself.&#160; I don’t have any access to the provider records, so all I have is the TCD table… when all you have is a hammer the whole world looks like a nail.</p>
<p>First, I turned to Google, which pointed me to how to get the <a href="https://supportforums.cisco.com/thread/2065484" target="_blank">calls per second</a>.&#160; This is good information as you would imagine that the highest CPS would fall during the busiest hour.&#160; The query mentioned is:</p>
<div class="csharpcode">
<pre class="alt"><span class="lnum">   1:  </span><span class="kwrd">SELECT</span> <span class="kwrd">Time</span>=<span class="kwrd">CONVERT</span>(<span class="kwrd">char</span>,DateTime,108), CPS=<span class="kwrd">CONVERT</span>(<span class="kwrd">decimal</span>(5,2), RouteCallDetailTo5/300.0)</pre>
<pre><span class="lnum">   2:  </span><span class="kwrd">FROM</span> t_Logger_Meters</pre>
<pre class="alt"><span class="lnum">   3:  </span><span class="kwrd">WHERE</span> DateTime <span class="kwrd">BETWEEN</span> <span class="str">'01/01/2013 00:05'</span> <span class="kwrd">AND</span> <span class="str">'01/02/2013 23:59'</span></pre>
<pre><span class="lnum">   4:  </span><span class="kwrd">ORDER</span> <span class="kwrd">BY</span> <span class="kwrd">Time</span></pre>
</div>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>Second, I opened up SQL Studio and began running some queries and came up with the following:</p>
<div class="csharpcode">
<pre class="alt"><span class="lnum">   1:  </span><span class="kwrd">SELECT</span> DATEPART(<span class="kwrd">HOUR</span>, DateTime) <span class="kwrd">AS</span> [<span class="kwrd">Hour</span> <span class="kwrd">of</span> <span class="kwrd">Day</span>], <span class="kwrd">COUNT</span>(<span class="kwrd">distinct</span> RouterCallKey) </pre>
<pre><span class="lnum">   2:  </span><span class="kwrd">FROM</span> t_Termination_Call_Detail</pre>
<pre class="alt"><span class="lnum">   3:  </span><span class="kwrd">WHERE</span> DateTime &gt; <span class="str">'01/01/2013 06:00'</span> <span class="kwrd">and</span> DateTime &lt; <span class="str">'01/01/2013 20:00'</span></pre>
<pre><span class="lnum">   4:  </span><span class="kwrd">GROUP</span> <span class="kwrd">BY</span> DATEPART(<span class="kwrd">HOUR</span>, DateTime)</pre>
<pre class="alt"><span class="lnum">   5:  </span><span class="kwrd">ORDER</span> <span class="kwrd">BY</span> DATEPART(<span class="kwrd">HOUR</span>, DateTime)</pre>
</div>
<div class="csharpcode">&#160;</div>
<div class="csharpcode"><font color="#505050" face="Verdana">This query assumes that every new call will receive its own RCK, so we can use this as our counter.&#160; Next, the query breaks up the select statement by hour.&#160; Finally, put the output in Excel and make a pretty graph.&#160; Some caveats, this is very generic and over counts.&#160; It doesn’t care about transfers, outbound calls, etc.&#160; Next, the query doesn’t look at the routing client, so if you have a lot of UCM generated calls this might not help you very much.</font></div>
<div class="csharpcode"><font face="Verdana"></font></div>
<div class="csharpcode"><font color="#505050" face="Verdana">~david</font></div>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
]]></content:encoded>
			<wfw:commentRss>http://dmacias.org/2013/04/01/determine-busy-hour-from-ucce-tcd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download Huge Cisco Finesse Logs</title>
		<link>http://dmacias.org/2013/03/13/download-huge-cisco-finesse-logs/</link>
		<comments>http://dmacias.org/2013/03/13/download-huge-cisco-finesse-logs/#comments</comments>
		<pubDate>Thu, 14 Mar 2013 03:21:13 +0000</pubDate>
		<dc:creator>dmacias</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Cisco Finesse]]></category>
		<category><![CDATA[Mulk]]></category>

		<guid isPermaLink="false">http://dmacias.org/?p=533</guid>
		<description><![CDATA[You might have seen my previous post on how to use wget to download Finesse logs.&#160; This works like a champ, however wget has an issue with large files (&#62; 1GB), so I had to come up with a new solution as some of our logs were in the 2-3 GB range.&#160; This is where [...]]]></description>
				<content:encoded><![CDATA[<p>You might have seen my <a href="http://dmacias.org/2013/03/07/faster-way-to-download-cisco-finesse-logs-using-wget/" target="_blank">previous post</a> on how to use wget to download Finesse logs.&#160; This works like a champ, however wget has an issue with large files (&gt; 1GB), so I had to come up with a new solution as some of our logs were in the 2-3 GB range.&#160; This is where <a href="http://sourceforge.net/projects/mulk/" target="_blank">mulk</a> comes in.&#160; This little tool runs great on Windows and has had no problems with any file size.&#160; Download it and using the command prompt do the following:</p>
<blockquote><p>mulk-0.6.0&gt;mulk -v &#8211;user=&lt;user&gt; &#8211;password=&lt;password&gt; -d=0 <a href="http://10.89.66.102/finesse/logs/">http://10.89.66.102/finesse/logs/</a></p>
</blockquote>
<p>The only major drawback from mulk is that it doesn’t have a setting to just download the latest files, but if you think about it, you could probably use wget and mulk in conjunction to create the perfect too to save you some time.</p>
<p>~david</p>
]]></content:encoded>
			<wfw:commentRss>http://dmacias.org/2013/03/13/download-huge-cisco-finesse-logs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Faster Way to Download Cisco Finesse Logs Using Wget</title>
		<link>http://dmacias.org/2013/03/07/faster-way-to-download-cisco-finesse-logs-using-wget/</link>
		<comments>http://dmacias.org/2013/03/07/faster-way-to-download-cisco-finesse-logs-using-wget/#comments</comments>
		<pubDate>Thu, 07 Mar 2013 15:27:27 +0000</pubDate>
		<dc:creator>dmacias</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Cisco Finess]]></category>
		<category><![CDATA[Cisco UCCE]]></category>
		<category><![CDATA[Finesse 9.x]]></category>

		<guid isPermaLink="false">http://dmacias.org/?p=531</guid>
		<description><![CDATA[You should check out my other post on dealing with large Finesse logs. If you’ve had the ‘pleasure’ of troubleshooting Cisco’s newest desktop offering Finesse you know that getting logs from it is a bit of a pain.&#160; While sitting on a TAC call I came up with this approach which has made the process [...]]]></description>
				<content:encoded><![CDATA[<p align="center"><a href="http://dmacias.org/2013/03/13/download-huge-cisco-finesse-logs/" target="_blank">You should check out my other post on dealing with large Finesse logs.</a></p>
<p>If you’ve had the ‘pleasure’ of troubleshooting Cisco’s newest desktop offering <a href="http://www.cisco.com/en/US/products/ps11324/index.html" target="_blank">Finesse</a> you know that getting logs from it is a bit of a pain.&#160; While sitting on a TAC call I came up with this approach which has made the process a bit easier.&#160; This solution is not perfect, but it’s better than having to click, right click, download as…</p>
<ol>
<li>First ensure you have access to the Finesse logs directory <strong><a href="http://&lt;finessehost&gt;/finesse/logs/">/finesse/logs/&quot;&gt;/finesse/logs/&quot;&gt;/finesse/logs/&quot;&gt;http://&lt;finessehost&gt;/finesse/logs/</a></strong>, you’ll need your administrator username and password. </li>
<li>Once you can confirm you can login, download <a href="http://www.gnu.org/software/wget/" target="_blank">GNU Wget</a> for you operating system. </li>
<li>Open a command prompt and run the following command: </li>
</ol>
<blockquote><p>wget –-http-user=&lt;user&gt; –-http-password=&lt;password&gt; –r –np http://&lt;finessehost&gt;/finesse/logs/ \</p>
</blockquote>
<p>This command will download every log file, it might take a while depending on your setup, but ultimately this first download is the most painful and afterwards you can use a slightly different command to just download the newest logs.</p>
<blockquote><p>wget –-http-user=&lt;user&gt; –-http-password=&lt;password&gt; –r –np –N http://&lt;finessehost&gt;/finesse/logs/ \</p>
</blockquote>
<p>This command will only download the newest logs which you can then quickly grab.&#160; If you want to be a badass you could then come up with a way to automatically only zip the new ones.</p>
<p>Hope this helps.</p>
<p>~david</p>
]]></content:encoded>
			<wfw:commentRss>http://dmacias.org/2013/03/07/faster-way-to-download-cisco-finesse-logs-using-wget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check Windows 2003 Service Status Remotely</title>
		<link>http://dmacias.org/2012/07/28/check-windows-2003-service-status-remotely/</link>
		<comments>http://dmacias.org/2012/07/28/check-windows-2003-service-status-remotely/#comments</comments>
		<pubDate>Sat, 28 Jul 2012 20:48:23 +0000</pubDate>
		<dc:creator>dmacias</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2003]]></category>

		<guid isPermaLink="false">http://dmacias.org/?p=529</guid>
		<description><![CDATA[At my current project there are times where I have to restart a bunch of servers at a time.&#160; On these servers there is a particular service which I want to make sure it has started and is running.&#160; There’s the sc.exe command which allows your stop, start, query service statuses from the command prompt. [...]]]></description>
				<content:encoded><![CDATA[<p>At my current project there are times where I have to restart a bunch of servers at a time.&#160; On these servers there is a particular service which I want to make sure it has started and is running.&#160; There’s the <a href="http://technet.microsoft.com/en-us/library/cc754599%28v=ws.10%29.aspx">sc.exe</a> command which allows your stop, start, query service statuses from the command prompt.</p>
<p>Here’s a small batch script I wrote which runs through a list of server names and prints out the status.&#160; You’ll need two files.</p>
<p>First file includes the server names and is called Servers.txt:</p>
<p>Server1   <br />Server2    <br />Server3    <br />Server4</p>
<p>The second file just needs to be saved as a .bat file.</p>
<div class="csharpcode">
<pre class="alt"><span class="lnum">   1:  </span><span class="rem">REM ***Start Here***</span></pre>
<pre><span class="lnum">   2:  </span>Echo Off</pre>
<pre class="alt"><span class="lnum">   3:  </span>Setlocal EnableDelayedExpansion</pre>
<pre><span class="lnum">   4:  </span><span class="kwrd">FOR</span> /F <span class="str">&quot;Tokens=*&quot;</span> %%L <span class="kwrd">IN</span> (Servers.txt) <span class="kwrd">DO</span> (</pre>
<pre class="alt"><span class="lnum">   5:  </span>   <span class="kwrd">SET</span> ServerName=</pre>
<pre><span class="lnum">   6:  </span>   <span class="kwrd">SET</span> ServerName=%%L</pre>
<pre class="alt"><span class="lnum">   7:  </span>   sc.exe \\!ServerName! query &lt;Your Service Name&gt; &gt; Results.txt</pre>
<pre><span class="lnum">   8:  </span>   ECHO !ServerName!</pre>
<pre class="alt"><span class="lnum">   9:  </span>   Find /i <span class="str">&quot;RUNNING&quot;</span> &lt; Result.txt</pre>
<pre><span class="lnum">  10:  </span>   Find /i <span class="str">&quot;STOPPED&quot;</span> &lt; Result.txt</pre>
<pre class="alt"><span class="lnum">  11:  </span>)</pre>
<pre><span class="lnum">  12:  </span><span class="kwrd">IF</span> EXIST Results.txt DEL Result.txt</pre>
<pre class="alt"><span class="lnum">  13:  </span><span class="kwrd">REM</span> ***<span class="kwrd">END</span> HERE***</pre>
</div>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>This script will print out the server name and if your particular service is RUNNING or STOPPED.&#160; You can expand this as you would like.</p>
<p>~david</p>
]]></content:encoded>
			<wfw:commentRss>http://dmacias.org/2012/07/28/check-windows-2003-service-status-remotely/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco CVP 7.x No Session Error</title>
		<link>http://dmacias.org/2012/07/19/cisco-cvp-7-x-no-session-error/</link>
		<comments>http://dmacias.org/2012/07/19/cisco-cvp-7-x-no-session-error/#comments</comments>
		<pubDate>Thu, 19 Jul 2012 10:29:32 +0000</pubDate>
		<dc:creator>dmacias</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Cisco CVP]]></category>
		<category><![CDATA[Cisco UCCE]]></category>

		<guid isPermaLink="false">http://dmacias.org/?p=527</guid>
		<description><![CDATA[Ran into this small issue while trying to release a new CVP application for one of my customers.&#160; Everything was working on the test CVP server, but when it was time to put it on the production CVP servers I received the following error: 24769204: 10.10.90.115: Jul 19 2012 04:51:33.406 -0500: %CVP_7_0_IVR-3-CALL_ERROR: CALLGUID=9EA62E12100001383796F8800A0A5A73 DNIS=8111111111122013 CVP [...]]]></description>
				<content:encoded><![CDATA[<p>Ran into this small issue while trying to release a new CVP application for one of my customers.&#160; Everything was working on the test CVP server, but when it was time to put it on the production CVP servers I received the following error:</p>
<blockquote><p>24769204: 10.10.90.115: Jul 19 2012 04:51:33.406 -0500: %CVP_7_0_IVR-3-CALL_ERROR: CALLGUID=9EA62E12100001383796F8800A0A5A73 DNIS=8111111111122013 CVP VXML Server encountered a No Session error &#8211; URL: <a href="http://CVP03:7000/CVP/en-us/../Server?DNIS=18775555555&amp;InsuranceOpen=0&amp;CallType=InsuranceCall&amp;ANI=+1555555555">http://CVP03:7000/CVP/en-us/../Server?DNIS=18775555555&amp;InsuranceOpen=0&amp;CallType=InsuranceCall&amp;ANI=+1555555555</a></p>
<p>&amp;PrimaryLocation=Birm&amp;callid=9EA62E12100001383796F8800A0A5A73&amp;</p>
<p>application=Insurance&amp;RoutingClient=CVP03 (Client: 10.10.90.123) [id:3023]      <br />24769205: 10.10.90.115: Jul 19 2012 04:51:33.406 -0500: %CVP_7_0_IVR-3-CALL_ERROR: RunScript Error from 10.10.90.123 [CVP_NO_SESSION_ERROR(44)] CALLGUID: 9EA62E12100001383796F8800A0A5A73 DNIS=8111111111122013 {VRUScriptName: &#8216;GS,Server,V&#8217; ConfigParam: &#8221;} [id:3023]       </p>
</blockquote>
<p>Now, this stumped me for a bit as it made not sense as to why this wouldn’t work as all the servers are exactly the same.&#160; After a bit more digging I noticed that the application wasn’t deployed in CVP03.&#160; Then I noticed that the application wasn’t deployed on any of the CVP servers.&#160; Back in business.</p>
<p>When you don’t write CVP applications enough you forget the little things.</p>
<p>~david</p>
]]></content:encoded>
			<wfw:commentRss>http://dmacias.org/2012/07/19/cisco-cvp-7-x-no-session-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dialed Number, Call Type, and Script Association</title>
		<link>http://dmacias.org/2012/06/07/dialed-number-call-type-and-script-association/</link>
		<comments>http://dmacias.org/2012/06/07/dialed-number-call-type-and-script-association/#comments</comments>
		<pubDate>Thu, 07 Jun 2012 13:49:05 +0000</pubDate>
		<dc:creator>dmacias</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Cisco ICM]]></category>
		<category><![CDATA[cuic]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://dmacias.org/?p=524</guid>
		<description><![CDATA[Found this gem on the Cisco Support Forums today and I just had to blog about it because it’s awesome!&#160; The OP is looking for a way an easy way to find which ICM dialed numbers are associated with which call type and which call type is associated with which script.&#160; The end result is [...]]]></description>
				<content:encoded><![CDATA[<p>Found this <a href="https://supportforums.cisco.com/thread/2153105?tstart=0" target="_blank">gem</a> on the Cisco Support Forums today and I just had to blog about it because it’s awesome!&#160; The OP is looking for a way an easy way to find which ICM dialed numbers are associated with which call type and which call type is associated with which script.&#160; The end result is this work of art:</p>
<div class="csharpcode">
<pre class="alt"><span class="kwrd">SELECT</span> dn.DialedNumberString, dn.EnterpriseName <span class="kwrd">AS</span> Dialed_Number_Name, ct.EnterpriseName <span class="kwrd">AS</span> Call_Type_Name, ms.EnterpriseName <span class="kwrd">AS</span> Script_Name</pre>
<pre><span class="kwrd">FROM</span> Dialed_Number dn</pre>
<pre class="alt"><span class="kwrd">LEFT</span> <span class="kwrd">OUTER</span> <span class="kwrd">JOIN</span> Dialed_Number_Map dnm <span class="kwrd">ON</span> dn.DialedNumberID = dnm.DialedNumberID</pre>
<pre><span class="kwrd">LEFT</span> <span class="kwrd">OUTER</span> <span class="kwrd">JOIN</span> Call_Type ct <span class="kwrd">ON</span> dnm.CallTypeID = ct.CallTypeID</pre>
<pre class="alt"><span class="kwrd">LEFT</span> <span class="kwrd">OUTER</span> <span class="kwrd">JOIN</span> Call_Type_Map ctm <span class="kwrd">ON</span> ct.CallTypeID = ctm.CallTypeID</pre>
<pre><span class="kwrd">LEFT</span> <span class="kwrd">OUTER</span> <span class="kwrd">JOIN</span> Master_Script ms <span class="kwrd">ON</span> ctm.MasterScriptID = ms.MasterScriptID</pre>
</div>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>Put this in a CUIC report and you can give the users the power to confirm where things are supposed to route without having to ask you. :-)</p>
<p>~david</p>
]]></content:encoded>
			<wfw:commentRss>http://dmacias.org/2012/06/07/dialed-number-call-type-and-script-association/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>El Amor en los Tiempos del Colera</title>
		<link>http://dmacias.org/2012/04/22/el-amor-en-los-tiempos-del-colera/</link>
		<comments>http://dmacias.org/2012/04/22/el-amor-en-los-tiempos-del-colera/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 23:49:01 +0000</pubDate>
		<dc:creator>dmacias</dc:creator>
				<category><![CDATA[Books]]></category>

		<guid isPermaLink="false">http://dmacias.org/?p=521</guid>
		<description><![CDATA[Thought I had posted this before, but could not find it.&#160; Here’s my favorite quote from this great book. Con ella aprendio Florentino Ariza lo que ya habia padecido muchas veces sin saberlo: que se puede estar enamorado de varias personas a la vez, y de todas con el mismo dolor, sin traicionar a ninguna. [...]]]></description>
				<content:encoded><![CDATA[<p>Thought I had posted this before, but could not find it.&#160; Here’s my favorite quote from this great book.</p>
<blockquote><p>Con ella aprendio Florentino Ariza lo que ya habia padecido muchas veces sin saberlo: que se puede estar enamorado de varias personas a la vez, y de todas con el mismo dolor, sin traicionar a ninguna. Solitario etre la muchedumbre del muelle, se habia dicho con un golpe de rabia: &#8216;El corazon tiene mas cuartos que un hotel de putas&#8217;. Estaba ba~nado en lagrimas por el dolor de los adioses. Sin embargo, no bien habia desaparecido el barco en la linea del horizonte, cuando ya el recuredo de Fermina Daza habia vuelto a ocupar su espacio total.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://dmacias.org/2012/04/22/el-amor-en-los-tiempos-del-colera/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco CUIC 8.x More Value List and Collections</title>
		<link>http://dmacias.org/2012/04/13/cisco-cuic-8-x-more-value-list-and-collections/</link>
		<comments>http://dmacias.org/2012/04/13/cisco-cuic-8-x-more-value-list-and-collections/#comments</comments>
		<pubDate>Sat, 14 Apr 2012 02:40:41 +0000</pubDate>
		<dc:creator>dmacias</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Cisco CUIC 8.x]]></category>

		<guid isPermaLink="false">http://dmacias.org/?p=518</guid>
		<description><![CDATA[I wanted to make a clarification to my earlier post about Value Lists and Collections.&#160; This post will explain how to create a new Value List which will retrieve agents who have a specific value in their Agent.Description field.&#160; Then Collections can be used to extract other more specific agents.&#160; This could be used to [...]]]></description>
				<content:encoded><![CDATA[<p>I wanted to make a clarification to my earlier post about Value Lists and Collections.&#160; This post will explain how to create a new Value List which will retrieve agents who have a specific value in their Agent.Description field.&#160; Then Collections can be used to extract other more specific agents.&#160; This could be used to retrieve agents from a single peripheral or agents named David, etc..&#160; First, here’s the Value List:</p>
<p><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Value List" border="0" alt="Value List" src="http://dmacias.org/wp-content/uploads/2012/04/Value-List.png" width="514" height="484" /></p>
<p>And finally here’s a Collection:</p>
<p><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Collection" border="0" alt="Collection" src="http://dmacias.org/wp-content/uploads/2012/04/Collection.png" width="644" height="439" /></p>
<p>Hope this makes sense and will help you create your own Value List and Collections.</p>
<p>~david</p>
]]></content:encoded>
			<wfw:commentRss>http://dmacias.org/2012/04/13/cisco-cuic-8-x-more-value-list-and-collections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can you guess when I started my new project?</title>
		<link>http://dmacias.org/2012/03/29/can-you-guess-when-i-started-my-new-project/</link>
		<comments>http://dmacias.org/2012/03/29/can-you-guess-when-i-started-my-new-project/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 00:53:14 +0000</pubDate>
		<dc:creator>dmacias</dc:creator>
				<category><![CDATA[General News]]></category>
		<category><![CDATA[cellphone]]></category>

		<guid isPermaLink="false">http://dmacias.org/?p=513</guid>
		<description><![CDATA[&#160; I’m hoping things slow down soon or that 4000 minutes per month is as bad as it will get.&#160; This also doesn’t account the times I’m on two conference calls at once. :(]]></description>
				<content:encoded><![CDATA[<p>&#160;</p>
<p><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px; padding-top: 0px" title="Capture" border="0" alt="Capture" src="http://dmacias.org/wp-content/uploads/2012/03/Capture.png" width="644" height="244" /></p>
<p>I’m hoping things slow down soon or that 4000 minutes per month is as bad as it will get.&#160; This also doesn’t account the times I’m on two conference calls at once. :(</p>
]]></content:encoded>
			<wfw:commentRss>http://dmacias.org/2012/03/29/can-you-guess-when-i-started-my-new-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco CUIC Creating Value Lists and Collections</title>
		<link>http://dmacias.org/2012/03/14/cisco-cuic-creating-value-lists-and-collections/</link>
		<comments>http://dmacias.org/2012/03/14/cisco-cuic-creating-value-lists-and-collections/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 08:35:37 +0000</pubDate>
		<dc:creator>dmacias</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[cuic]]></category>
		<category><![CDATA[reporting]]></category>

		<guid isPermaLink="false">http://dmacias.org/?p=507</guid>
		<description><![CDATA[This one should be pretty simple, but figure I would add it here for posterity’s sake.&#160; I wanted to setup a real time Value List of all the call types, then break down my Value List into smaller Collections for each specific type of call type. First step is to log in to CUIC and [...]]]></description>
				<content:encoded><![CDATA[<p>This one should be pretty simple, but figure I would add it here for posterity’s sake.&#160; I wanted to setup a real time Value List of all the call types, then break down my Value List into smaller Collections for each specific type of call type.</p>
<p>First step is to log in to CUIC and got to Value Lists and click on Create.</p>
<p><a href="http://dmacias.org/wp-content/uploads/2012/03/Untitled.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Untitled" border="0" alt="Untitled" src="http://dmacias.org/wp-content/uploads/2012/03/Untitled_thumb.png" width="644" height="364" /></a></p>
<p>The Value List Query:</p>
<div class="csharpcode">
<pre class="alt"><span class="kwrd">SELECT</span> Call_Type.CallTypeID <span class="kwrd">AS</span> ID, Call_Type.EnterpriseName <span class="kwrd">AS</span> <span class="kwrd">VALUE</span> <span class="kwrd">FROM</span> Call_Type (nolock) </pre>
<pre><span class="kwrd">Order</span> <span class="kwrd">by</span> Call_Type.EnterpriseName</pre>
</div>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>The Collection Query:</p>
<div class="csharpcode">
<pre class="alt"><span class="kwrd">SELECT</span> Call_Type.CallTypeID <span class="kwrd">AS</span> ID, Call_Type.EnterpriseName <span class="kwrd">AS</span> <span class="kwrd">VALUE</span> <span class="kwrd">FROM</span> Call_Type (nolock) </pre>
<pre><span class="kwrd">WHERE</span> Call_Type.CustomerDefinitionID = (<span class="kwrd">SELECT</span> User_Group.CustomerDefinitionID <span class="kwrd">FROM</span> User_Group (nolock) </pre>
<pre class="alt"><span class="kwrd">WHERE</span> <span class="kwrd">UPPER</span>(User_Group.UserGroupName) = <span class="kwrd">UPPER</span>(&lt;COLLECTIONIDENTIFIER&gt;)) <span class="kwrd">OR</span> (<span class="kwrd">SELECT</span> <span class="kwrd">COUNT</span>(User_Group.CustomerDefinitionID) </pre>
<pre><span class="kwrd">FROM</span> User_Group (nolock) <span class="kwrd">WHERE</span> <span class="kwrd">UPPER</span>(User_Group.UserGroupName) = <span class="kwrd">UPPER</span>(&lt;COLLECTIONIDENTIFIER&gt;)) = 0 <span class="kwrd">ORDER</span> <span class="kwrd">BY</span> Call_Type.EnterpriseName ASC</pre>
</div>
<p>Validate your query and save.</p>
<p>Second, click on your Value List and click on Collections.</p>
<p><a href="http://dmacias.org/wp-content/uploads/2012/03/Untitled1.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Untitled1" border="0" alt="Untitled1" src="http://dmacias.org/wp-content/uploads/2012/03/Untitled1_thumb.png" width="644" height="364" /></a></p>
<p>Notice the Collection Type of Wildcard which allows your create a wildcard which references all your call types.&#160; This could be French* or CustomerService*.&#160; Hit Save, Populate Values, and confirm the values to ensure the collection has the call types you’re looking for.</p>
<p>~dmacias</p>
]]></content:encoded>
			<wfw:commentRss>http://dmacias.org/2012/03/14/cisco-cuic-creating-value-lists-and-collections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
