<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Digital Epidemiology: Edgesight Under the hood (Will be moved to EdgesightUndertheHood.com)</title>
	<atom:link href="http://xen-trifuge.com/2009/12/06/89/feed/" rel="self" type="application/rss+xml" />
	<link>http://xen-trifuge.com/2009/12/06/89/</link>
	<description></description>
	<lastBuildDate>Tue, 03 Apr 2012 22:57:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Timm, Dirk</title>
		<link>http://xen-trifuge.com/2009/12/06/89/#comment-52</link>
		<dc:creator><![CDATA[Timm, Dirk]]></dc:creator>
		<pubDate>Thu, 21 Jan 2010 15:28:05 +0000</pubDate>
		<guid isPermaLink="false">http://jmsazboy.wordpress.com/2009/12/06/89/#comment-52</guid>
		<description><![CDATA[Hi John,

thanks for your posting regarding the Edge Sight Reporting
if you have this knowlege for the Reports (RDL) .xml file 
like exactly for an report &quot;application; usage; version number; Session time&quot;
it would be very beautiful to received your help for it,

If you have this file ready to run could i ask you to sent me this ?

Would be very fine,

With best regards,

Dirk Timm]]></description>
		<content:encoded><![CDATA[<p>Hi John,</p>
<p>thanks for your posting regarding the Edge Sight Reporting<br />
if you have this knowlege for the Reports (RDL) .xml file<br />
like exactly for an report &#8220;application; usage; version number; Session time&#8221;<br />
it would be very beautiful to received your help for it,</p>
<p>If you have this file ready to run could i ask you to sent me this ?</p>
<p>Would be very fine,</p>
<p>With best regards,</p>
<p>Dirk Timm</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John M. Smith</title>
		<link>http://xen-trifuge.com/2009/12/06/89/#comment-32</link>
		<dc:creator><![CDATA[John M. Smith]]></dc:creator>
		<pubDate>Mon, 07 Dec 2009 13:05:48 +0000</pubDate>
		<guid isPermaLink="false">http://jmsazboy.wordpress.com/2009/12/06/89/#comment-32</guid>
		<description><![CDATA[&lt;strong&gt;Here is the Hourly:(Note the change I just made!&lt;/strong&gt;
There are four variables you need to edit in this query.  The @Begin and @End need to have the two digit times based on a 24 hour clock.    The @App needs to have the published application and the @Today needs to include the day(s) you want to query.  Basically @Today is the current day, @Today-1 is yesterday, @today-2 is the day before yesterday....etc...etc...etc.  

Also, I subtract four hours in my query to make the time match where I am (EST).  That time_stamp column may need to be changed to accomodate your time zone.  

*Note I changed (Count published_application) to count(distinct sessid).  This looks like better results and will serve you better when we look at user sessions.  I will make the remainder of your requests My next post if that works?  

Paste this into query analyzer and let me know if it works.  I will work on the daily and monthly tonight.  



declare @begin varchar
declare @end varchar
declare @today datetime
declare @app varchar
set @today = convert(varchar,getdate(),111)
set @begin = &#039;00&#039;
set @end = &#039;23&#039;
set @app = &#039;%APPNAME%&#039;
select convert(varchar(2),dateadd(hh,-4,time_stamp), 108)+&#039;:00&#039; as &quot;Time&quot;, count(distinct sessid)
from vw_ctrx_archive_client_start_perf
where convert(varchar(10),dateadd(hh,-4,time_stamp), 111) = @today
and published_application like &#039;%&#039;+@app+&#039;%&#039;
group by  convert(varchar(2),dateadd(hh,-4,time_stamp), 108)+&#039;:00&#039;
order by  convert(varchar(2),dateadd(hh,-4,time_stamp), 108)+&#039;:00&#039;]]></description>
		<content:encoded><![CDATA[<p><strong>Here is the Hourly:(Note the change I just made!</strong><br />
There are four variables you need to edit in this query.  The @Begin and @End need to have the two digit times based on a 24 hour clock.    The @App needs to have the published application and the @Today needs to include the day(s) you want to query.  Basically @Today is the current day, @Today-1 is yesterday, @today-2 is the day before yesterday&#8230;.etc&#8230;etc&#8230;etc.  </p>
<p>Also, I subtract four hours in my query to make the time match where I am (EST).  That time_stamp column may need to be changed to accomodate your time zone.  </p>
<p>*Note I changed (Count published_application) to count(distinct sessid).  This looks like better results and will serve you better when we look at user sessions.  I will make the remainder of your requests My next post if that works?  </p>
<p>Paste this into query analyzer and let me know if it works.  I will work on the daily and monthly tonight.  </p>
<p>declare @begin varchar<br />
declare @end varchar<br />
declare @today datetime<br />
declare @app varchar<br />
set @today = convert(varchar,getdate(),111)<br />
set @begin = &#8217;00&#8242;<br />
set @end = &#8217;23&#8242;<br />
set @app = &#8216;%APPNAME%&#8217;<br />
select convert(varchar(2),dateadd(hh,-4,time_stamp), 108)+&#8217;:00&#8242; as &#8220;Time&#8221;, count(distinct sessid)<br />
from vw_ctrx_archive_client_start_perf<br />
where convert(varchar(10),dateadd(hh,-4,time_stamp), 111) = @today<br />
and published_application like &#8216;%&#8217;+@app+&#8217;%&#8217;<br />
group by  convert(varchar(2),dateadd(hh,-4,time_stamp), 108)+&#8217;:00&#8242;<br />
order by  convert(varchar(2),dateadd(hh,-4,time_stamp), 108)+&#8217;:00&#8242;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Hodel</title>
		<link>http://xen-trifuge.com/2009/12/06/89/#comment-31</link>
		<dc:creator><![CDATA[Peter Hodel]]></dc:creator>
		<pubDate>Mon, 07 Dec 2009 06:54:40 +0000</pubDate>
		<guid isPermaLink="false">http://jmsazboy.wordpress.com/2009/12/06/89/#comment-31</guid>
		<description><![CDATA[Hi John,
interesting read!

I&#039;m looking for a custom report showing the application usage (Published Apps, not processes) on a hourly, daily and monthly base and a custom report showing the concurrent sessions on a hourly, daily and monthly base.

Do you have any of these?

Regards,
Peter]]></description>
		<content:encoded><![CDATA[<p>Hi John,<br />
interesting read!</p>
<p>I&#8217;m looking for a custom report showing the application usage (Published Apps, not processes) on a hourly, daily and monthly base and a custom report showing the concurrent sessions on a hourly, daily and monthly base.</p>
<p>Do you have any of these?</p>
<p>Regards,<br />
Peter</p>
]]></content:encoded>
	</item>
</channel>
</rss>

