BlackBerryForums.com : Your Number One BlackBerry Community      

»Sponsored Links




Closed Thread
 
LinkBack Thread Tools
  (#1 (permalink)) Old
jgroh9 Offline
New Member
 
Posts: 12
Join Date: Dec 2005
Model: 7290
Question Third Party Applications - 09-15-2006, 09:36 AM

Does anyone know of a way to find out which third party applications are installed on all BES users handhelds? We are running one BES (4.1) with a remote SQL server. I have been looking in the SQL database for this info but can't seem to locate the table that stores this info.
Thanks in advance
   
Sponsored Links
Please Login or Register to Remove these Advertisements!

  (#2 (permalink)) Old
||||||| Offline
CrackBerry Addict
 
|||||||'s Avatar
 
Posts: 615
Join Date: Jun 2006
Model: 7100
Carrier: Rogers
Default 09-15-2006, 10:24 AM

Edit Properties for the user and got to the BlackBerry Device read only section.
Please note that this may not be up to date.
   
  (#3 (permalink)) Old
jgroh9 Offline
New Member
 
Posts: 12
Join Date: Dec 2005
Model: 7290
Default 09-15-2006, 11:16 AM

I know where to find the data via Blackberry Manager but I do not want to go into the properties of over 1100 users to see what apps are installed. I was hoping to do a query from the database.
Thanks anyways
   
  (#4 (permalink)) Old
jinksPadlock Offline
Knows Where the Search Button Is
 
Posts: 36
Join Date: Jul 2006
Model: 7290
Carrier: T-Mobile
Default 09-15-2006, 11:35 AM

This data is not realtime either but its a start...

Create a function in the SQL Database...

Create Function dbo.fnStripTags
(@Dirty varchar(4000))
Returns varchar(4000)
As

BEGIN
DECLARE @Start int, @End int, @Length int

SELECT @Start = CharIndex('>', @Dirty, CharIndex('<t4>', @Dirty))
SELECT @End = CharIndex('<', @Dirty, CharIndex('</t4>', @Dirty))
SELECT @Length = (@End - @Start) - 1
If @Length > 0
BEGIN
SET @Dirty = Substring(@Dirty, @Start + 1, @Length)
END

RETURN @Dirty
END

Run the function on the data field in vHandheldInfo.

SELECT PIN, fnStripTags(data) FROM vHandheldInfo

The <t4> field will occasionally provide the name of the app installed. If I add an additional filter to get rid of entries that are numbers it gives a readable list.
   
Closed Thread


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On






Copyright © 2004-2008 BlackBerryNews.com, BlackBerryFAQ.com, BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of Research In Motion Limited.
Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.0.1