Solved

commvault Reporting

  • 12 March 2022
  • 3 replies
  • 85 views

Badge +3

hi vaulter community, 

is there a report in commvault that can show when client’s first time backup date?

 

thanks a lot in advance

Ding

 

icon

Best answer by dingdong 13 March 2022, 04:17

View original

If you have a question or comment, please create a topic

3 replies

Userlevel 6
Badge +15

Ding,

Good morning.  Have you tried to run a Job Summary report from the Command Center for the client mentioned?  You can select the client and a time range and it will show all jobs within that range:

 

Badge +3

hi @Orazan ,

thank you for responding, 

yes i had seen the report there but can not see the first time backup.

year ago i see it somewhere in csv report (too bad i lost it) 

hoping vaulter have idea how to get list of clients first time it was backup, maybe with custom reports.

thanks

Ding

 

.Ding,

Good morning.  Have you tried to run a Job Summary report from the Command Center for the client mentioned?  You can select the client and a time range and it will show all jobs within that range:

 

 

Badge +3

hi All, 

i can get the data from commServe Table APP_ClientInstallHistory

 

query :

 SELECT [clientId]
 , dateadd(ss, installTime%86400, dateadd(dd, installTime/86400, '01/01/1970')) as InstallDate
 , dateadd(ss, uninstallTime%86400, dateadd(dd, uninstallTime/86400, '01/01/1970')) as unInstallDate

      
  FROM [CommServ].[dbo].[APP_ClientInstallHistory]
  

the result will be similar like this

clientId    InstallDate    unInstallDate
2    2019-12-19 04:55:10.000    1970-01-01 00:00:00.000
3    2019-12-19 07:34:54.000    1970-01-01 00:00:00.000
4    2019-12-19 07:34:58.000    1970-01-01 00:00:00.000

copied the dateadd syntax from commserve getdatetime.sql 

cannot get first time backup. but still can represent the first time bakcup if the client really configured and backup in the same day.

 

thanks

Ding.

hi vaulter community, 

is there a report in commvault that can show when client’s first time backup date?

 

thanks a lot in advance

Ding