<?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/"
		>
<channel>
	<title>Comments on: Howto: Export a list of all BES users via the Blackberry Manager tool</title>
	<atom:link href="http://thebackroomtech.com/2009/05/06/howto-export-a-list-of-all-bes-users-via-the-blackberry-manager-tool/feed/" rel="self" type="application/rss+xml" />
	<link>http://thebackroomtech.com/2009/05/06/howto-export-a-list-of-all-bes-users-via-the-blackberry-manager-tool/</link>
	<description>serving up the info back room techs everywhere find interesting</description>
	<lastBuildDate>Sun, 07 Nov 2010 18:59:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Anton Polac</title>
		<link>http://thebackroomtech.com/2009/05/06/howto-export-a-list-of-all-bes-users-via-the-blackberry-manager-tool/#comment-1277</link>
		<dc:creator>Anton Polac</dc:creator>
		<pubDate>Mon, 27 Sep 2010 14:03:52 +0000</pubDate>
		<guid isPermaLink="false">http://thebackroomtech.com/?p=1713#comment-1277</guid>
		<description>Hi,

There is  additional way using Query Expres that allows BlackBerry users export to csv.

Please see here

kreslavsky.com/2009/08/how-to-export-csv-list-of-blackberry-users-from-bes-server.html</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>There is  additional way using Query Expres that allows BlackBerry users export to csv.</p>
<p>Please see here</p>
<p>kreslavsky.com/2009/08/how-to-export-csv-list-of-blackberry-users-from-bes-server.html</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ceasar</title>
		<link>http://thebackroomtech.com/2009/05/06/howto-export-a-list-of-all-bes-users-via-the-blackberry-manager-tool/#comment-1276</link>
		<dc:creator>ceasar</dc:creator>
		<pubDate>Tue, 08 Jun 2010 13:52:10 +0000</pubDate>
		<guid isPermaLink="false">http://thebackroomtech.com/?p=1713#comment-1276</guid>
		<description>Because you need to expand the field to git the full value</description>
		<content:encoded><![CDATA[<p>Because you need to expand the field to git the full value</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guy Lefebvre</title>
		<link>http://thebackroomtech.com/2009/05/06/howto-export-a-list-of-all-bes-users-via-the-blackberry-manager-tool/#comment-1275</link>
		<dc:creator>Guy Lefebvre</dc:creator>
		<pubDate>Mon, 17 May 2010 15:39:26 +0000</pubDate>
		<guid isPermaLink="false">http://thebackroomtech.com/?p=1713#comment-1275</guid>
		<description>Why would the pin # return a value of  2.0986E+29 when I export int Excel?</description>
		<content:encoded><![CDATA[<p>Why would the pin # return a value of  2.0986E+29 when I export int Excel?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dale</title>
		<link>http://thebackroomtech.com/2009/05/06/howto-export-a-list-of-all-bes-users-via-the-blackberry-manager-tool/#comment-1274</link>
		<dc:creator>Dale</dc:creator>
		<pubDate>Thu, 07 May 2009 08:26:29 +0000</pubDate>
		<guid isPermaLink="false">http://thebackroomtech.com/?p=1713#comment-1274</guid>
		<description>You can get those details from the SQL database directly.  I&#039;ve seen this code used to do that:

SELECT
     dbo.UserConfig.DisplayName AS Name,
     dbo.ServerConfig.ServiceName AS [BES Server],
     dbo.UserConfig.ServerDN AS [Exchange Server],
     dbo.UserConfig.PIN AS PIN, dbo.ITPolicy2.PolicyName AS [IT Policy],
     dbo.HandheldConfig.Name AS [Software Configuration],
     dbo.SyncDeviceMgmtSummary.ModelName AS BBModel,
     dbo.SyncDeviceMgmtSummary.PlatformVer AS PlatformVer,
     dbo.SyncDeviceMgmtSummary.AppsVer AS AppsVer,
     dbo.SyncDeviceMgmtSummary.IMEI AS IMEI, dbo.UserConfig.CreationTime AS CreationTime,
     dbo.UserConfig.MailboxSMTPAddr AS emailaddress
FROM
     dbo.UserConfig
     LEFT OUTER JOIN dbo.ServerConfig ON dbo.UserConfig.ServerConfigId = dbo.ServerConfig.Id
     LEFT OUTER JOIN dbo.ITPolicy2 ON dbo.UserConfig.ITPolicy2Id = dbo.ITPolicy2.Id
     LEFT OUTER JOIN dbo.UserStats ON dbo.UserConfig.Id = dbo.UserStats.Id
     LEFT OUTER JOIN dbo.HandheldConfig ON dbo.HandheldConfig.Id = dbo.UserConfig.HandheldConfigId
     LEFT OUTER JOIN dbo.SyncDeviceMgmtSummary ON dbo.SyncDeviceMgmtSummary.UserConfigId = dbo.UserConfig.Id</description>
		<content:encoded><![CDATA[<p>You can get those details from the SQL database directly.  I&#8217;ve seen this code used to do that:</p>
<p>SELECT<br />
     dbo.UserConfig.DisplayName AS Name,<br />
     dbo.ServerConfig.ServiceName AS [BES Server],<br />
     dbo.UserConfig.ServerDN AS [Exchange Server],<br />
     dbo.UserConfig.PIN AS PIN, dbo.ITPolicy2.PolicyName AS [IT Policy],<br />
     dbo.HandheldConfig.Name AS [Software Configuration],<br />
     dbo.SyncDeviceMgmtSummary.ModelName AS BBModel,<br />
     dbo.SyncDeviceMgmtSummary.PlatformVer AS PlatformVer,<br />
     dbo.SyncDeviceMgmtSummary.AppsVer AS AppsVer,<br />
     dbo.SyncDeviceMgmtSummary.IMEI AS IMEI, dbo.UserConfig.CreationTime AS CreationTime,<br />
     dbo.UserConfig.MailboxSMTPAddr AS emailaddress<br />
FROM<br />
     dbo.UserConfig<br />
     LEFT OUTER JOIN dbo.ServerConfig ON dbo.UserConfig.ServerConfigId = dbo.ServerConfig.Id<br />
     LEFT OUTER JOIN dbo.ITPolicy2 ON dbo.UserConfig.ITPolicy2Id = dbo.ITPolicy2.Id<br />
     LEFT OUTER JOIN dbo.UserStats ON dbo.UserConfig.Id = dbo.UserStats.Id<br />
     LEFT OUTER JOIN dbo.HandheldConfig ON dbo.HandheldConfig.Id = dbo.UserConfig.HandheldConfigId<br />
     LEFT OUTER JOIN dbo.SyncDeviceMgmtSummary ON dbo.SyncDeviceMgmtSummary.UserConfigId = dbo.UserConfig.Id</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 2/5 queries in 0.001 seconds using disk: basic
Object Caching 205/209 objects using disk: basic

Served from: thebackroomtech.com @ 2012-02-08 16:18:13 -->
