BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 02-01-2008, 03:28 PM   #21
big.phil
Knows Where the Search Button Is
 
big.phil's Avatar
 
Join Date: Jan 2008
Location: Seattle
Model: Gnex
PIN: varchar
Carrier: VZW (Galaxy Nexus)
Posts: 33
Default

Please Login to Remove!

check out the link for the available features of that product

Conceivium Business Solutions, Inc.
Offline  
Old 02-01-2008, 03:36 PM   #22
Frank Castle
BlackBerry Extraordinaire
 
Frank Castle's Avatar
 
Join Date: Jul 2005
Location: MA
Model: 9930
PIN: PM Me!
Carrier: VZW
Posts: 1,073
Default

Nice little app for exports, can you add the ability to export GROUPS, I have a ton setup and sort my reports by these groups.

Should note you need to run this with an ID that has permission to the DB.
Offline  
Old 02-01-2008, 03:45 PM   #23
hdawg
BlackBerry Genius
 
hdawg's Avatar
 
Join Date: Aug 2006
Model: hdawg
PIN: port3101.org
Carrier: hdawg
Posts: 6,632
Default

Quote:
Originally Posted by SoUnCool View Post
can you read MDS log file using that tool too ?
Get the book BlackBerry Hacks by Dave Mabe and with MS logparser and you can be a wizard.
Offline  
Old 02-01-2008, 05:38 PM   #24
big.phil
Knows Where the Search Button Is
 
big.phil's Avatar
 
Join Date: Jan 2008
Location: Seattle
Model: Gnex
PIN: varchar
Carrier: VZW (Galaxy Nexus)
Posts: 33
Question Groups

Quote:
Originally Posted by jletendre View Post
Nice little app for exports, can you add the ability to export GROUPS, I have a ton setup and sort my reports by these groups.

Should note you need to run this with an ID that has permission to the DB.
I think it should go without saying that you would need permissions to READ the database. the only tables being used at this time for data are: UserConfig, UserStats, GroupConfig, SyncDeviceMgmtSummary, ServerConfig

I have added it. what columns are of use in the GroupConfig table? right now i have GroupName and GroupDescription in version 1.0.0.3.

Last edited by big.phil; 02-01-2008 at 06:14 PM..
Offline  
Old 02-04-2008, 08:48 AM   #25
Frank Castle
BlackBerry Extraordinaire
 
Frank Castle's Avatar
 
Join Date: Jul 2005
Location: MA
Model: 9930
PIN: PM Me!
Carrier: VZW
Posts: 1,073
Default

Thanks .. just GroupName is fine .. I like to sort by the group when I run a report. (Each group is a division so it makes it easy to filter down)
Offline  
Old 02-04-2008, 10:21 AM   #26
SoUnCool
Talking BlackBerry Encyclopedia
 
Join Date: Feb 2007
Location: Toronto
Model: 9800
Carrier: Rogers
Posts: 319
Default

Quote:
Originally Posted by hdawg View Post
Get the book BlackBerry Hacks by Dave Mabe and with MS logparser and you can be a wizard.
thanks for the tip, this seems very promising
Offline  
Old 02-04-2008, 05:17 PM   #27
Wiseass
Talking BlackBerry Encyclopedia
 
Join Date: Sep 2005
Location: Illinois
Model: 9850
PIN: k Floyd \m/ ROCK!
Carrier: VZW
Posts: 249
Default

I like the app, any ability to maybe sort the different columnds ascending/descending by say clicking the column title?

edit: nvm I see you can do it lol. It seems to lag behind when I click the column but it's there!
__________________
"I dont feel I need to explain my art to you Warren"
Offline  
Old 02-04-2008, 06:11 PM   #28
big.phil
Knows Where the Search Button Is
 
big.phil's Avatar
 
Join Date: Jan 2008
Location: Seattle
Model: Gnex
PIN: varchar
Carrier: VZW (Galaxy Nexus)
Posts: 33
Default sorting

yeah, the sorting is built in, but it will take it just a second to go through the cells and sort them. im not sure how much lag you have, but it shouldnt be too much. i have a similar app that i commonly display 2000+ records and sorting that much data takes it about 5 seconds. how many rows do you have?
Offline  
Old 02-04-2008, 09:51 PM   #29
hdawg
BlackBerry Genius
 
hdawg's Avatar
 
Join Date: Aug 2006
Model: hdawg
PIN: port3101.org
Carrier: hdawg
Posts: 6,632
Default

I know I'm getting greedy here ... but any chance you'll post a list of the sql queries for each dataset you're grabbing?
Offline  
Old 02-05-2008, 06:17 PM   #30
big.phil
Knows Where the Search Button Is
 
big.phil's Avatar
 
Join Date: Jan 2008
Location: Seattle
Model: Gnex
PIN: varchar
Carrier: VZW (Galaxy Nexus)
Posts: 33
Default TSQL query

Here is the code that fills the main datagridview

Code:
SELECT     TOP 100 PERCENT dbo.UserConfig.DisplayName, dbo.UserConfig.PIN, dbo.SyncDeviceMgmtSummary.PhoneNumber, 
                      dbo.SyncDeviceMgmtSummary.IMEI, dbo.SyncDeviceMgmtSummary.HomeNetwork, dbo.SyncDeviceMgmtSummary.AppsVer, 
                      dbo.SyncDeviceMgmtSummary.ModelName, 
                      CASE dbo.SyncDeviceMgmtSummary.PasswordEnabled WHEN 1 THEN 'True' WHEN 0 THEN 'False' END AS 'PasswordEnabled', 
                      CASE dbo.UserStats.Status WHEN 12 THEN 'Running' WHEN 10 THEN 'In cradle' WHEN 0 THEN 'Initializing' END AS 'Status', 
                      dbo.SyncDeviceMgmtSummary.ITPolicyName, dbo.UserStats.UserConfigId, dbo.UserStats.MsgsForwarded, dbo.UserStats.MsgsSent, 
                      dbo.UserStats.MsgsPending, dbo.UserStats.MsgsExpired, dbo.UserStats.MsgsFiltered, dbo.UserStats.MsgsFailed, dbo.UserConfig.CreationTime, 
                      dbo.UserConfig.ActivationTime, dbo.UserStats.LastFwdTime, dbo.UserStats.LastSentTime, 
                      CASE dbo.UserConfig.RedirectWhenInCradle WHEN 1 THEN 'True' WHEN 0 THEN 'False' END AS 'RedirectWhenInCradle', 
                      dbo.UserConfig.MailboxSMTPAddr, dbo.UserConfig.OverrideSMTPAddr, dbo.UserConfig.MailboxDN, dbo.UserConfig.ServerDN, 
                      dbo.GroupConfig.GroupName, dbo.GroupConfig.Description AS 'GroupDescription'
FROM         dbo.UserConfig FULL OUTER JOIN
                      dbo.GroupConfig ON dbo.UserConfig.GroupConfigId = dbo.GroupConfig.Id FULL OUTER JOIN
                      dbo.UserStats ON dbo.UserConfig.Id = dbo.UserStats.UserConfigId FULL OUTER JOIN
                      dbo.SyncDeviceMgmtSummary ON dbo.UserConfig.Id = dbo.SyncDeviceMgmtSummary.UserConfigId
ORDER BY dbo.UserConfig.DisplayName
here is the code that gets the server info displayed in the label.

Code:
SELECT     MachineName, BESVersion
FROM         ServerConfig
Offline  
Old 03-19-2008, 08:46 AM   #31
kerseyr
Knows Where the Search Button Is
 
Join Date: Feb 2007
Model: 8120
Carrier: O2
Posts: 46
Default

Is this link working ok to the .zip file?

I just tried to download and nothing happens.

When I right click and try save as all i get is to save a .gif???

Can everyone else get to it ok?
Offline  
Old 03-19-2008, 11:40 AM   #32
SEP
Thumbs Must Hurt
 
Join Date: Nov 2007
Model: 9000
Carrier: -
Posts: 152
Default

no its a .gif
Offline  
Old 03-20-2008, 07:45 AM   #33
gmm1tb
New Member
 
Join Date: Mar 2007
Location: Detroit Metro Airport
Model: 8700
Carrier: Cingular
Posts: 4
Default

Quote:
Originally Posted by kerseyr View Post
Is this link working ok to the .zip file?

I just tried to download and nothing happens.

When I right click and try save as all i get is to save a .gif???

Can everyone else get to it ok?
Had the same issue with IE7. Worked fine with Firefox.
Offline  
Old 03-20-2008, 08:29 AM   #34
jibi
BlackBerry God
 
jibi's Avatar
 
Join Date: Oct 2004
Location: Jibi's Secret Place
Model: 8900
OS: 4.6.1.174
Carrier: AT&T
Posts: 11,310
Default

Following the server crash, attachments for BBF were unfortunately lost.
__________________
In the beginning the Universe was created. This has made a lot of people very angry and is widely regarded as a bad move.
Offline  
Old 03-20-2008, 09:12 AM   #35
kerseyr
Knows Where the Search Button Is
 
Join Date: Feb 2007
Model: 8120
Carrier: O2
Posts: 46
Default

Can anyone repost???

I would really like to see this?

thanks
Offline  
Old 03-20-2008, 10:08 AM   #36
Frank Castle
BlackBerry Extraordinaire
 
Frank Castle's Avatar
 
Join Date: Jul 2005
Location: MA
Model: 9930
PIN: PM Me!
Carrier: VZW
Posts: 1,073
Default Zip

Repost
Attached Files
File Type: zip BlackberryReports.zip (122.1 KB, 102 views)
Offline  
Old 03-20-2008, 10:44 AM   #37
ELBeast
Knows Where the Search Button Is
 
Join Date: Mar 2008
Model: 8130
PIN: N/A
Carrier: AT&T
Posts: 39
Default

I'm getting an Error:
Invalid object name 'dbo.GroupConfig'.
Offline  
Old 03-24-2008, 03:57 PM   #38
jbfb99
New Member
 
jbfb99's Avatar
 
Join Date: May 2006
Location: Houston, TX
Model: 9800
OS: 6.0.0.246
Carrier: AT&T
Posts: 6
Default

Thanks much! Any chance you can add BES name for each account? I have up to 4 servers connecting to a database.
Offline  
Old 03-31-2008, 02:24 PM   #39
big.phil
Knows Where the Search Button Is
 
big.phil's Avatar
 
Join Date: Jan 2008
Location: Seattle
Model: Gnex
PIN: varchar
Carrier: VZW (Galaxy Nexus)
Posts: 33
Default re-posted app

sorry for the delay all. i didnt know the forum crashed and lost all the attachments. i reposted build 1.0.0.3 to the first post.
__________________
--------------------------
BES 5.0.3 MR1, Exchange 2007 SP3 RU5
435 devices
Offline  
Old 03-31-2008, 02:29 PM   #40
big.phil
Knows Where the Search Button Is
 
big.phil's Avatar
 
Join Date: Jan 2008
Location: Seattle
Model: Gnex
PIN: varchar
Carrier: VZW (Galaxy Nexus)
Posts: 33
Default

Quote:
Originally Posted by ELBeast View Post
I'm getting an Error:
Invalid object name 'dbo.GroupConfig'.
what version of BES are you running? and is it for MSFT Exchange server?
__________________
--------------------------
BES 5.0.3 MR1, Exchange 2007 SP3 RU5
435 devices
Offline  
Closed Thread



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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


Lot of 6 Vintage Apple Drawstring Bags For iPhone, Mac, Apple Watch, iPod picture

Lot of 6 Vintage Apple Drawstring Bags For iPhone, Mac, Apple Watch, iPod

$45.00



Retro 1951 Apple Computer Logo 0.7mm Ballpoint Black Ink Pen Gold Barrel picture

Retro 1951 Apple Computer Logo 0.7mm Ballpoint Black Ink Pen Gold Barrel

$56.41



Vintage Red Apple Six Drawer Storage Organizer File Cabinet  picture

Vintage Red Apple Six Drawer Storage Organizer File Cabinet

$28.00



Vintage Print Block “ Apple Corer Kitchen Tool “ Copper Face Block picture

Vintage Print Block “ Apple Corer Kitchen Tool “ Copper Face Block

$16.00



Vintage  Rainbow Logo Apple Post-It Sticky Notes 4

Vintage Rainbow Logo Apple Post-It Sticky Notes 4" Rare computer collectible

$39.99



VINTAGE 1994 Apple Black Toner Laser Writer Cartridge M 2473 G/A NEW SEALED picture

VINTAGE 1994 Apple Black Toner Laser Writer Cartridge M 2473 G/A NEW SEALED

$25.95







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.