cancel
Showing results for 
Search instead for 
Did you mean: 

In EV 9 how do I count the index volume total using SQL script?

John_Santana
Level 6

Hi All,

Can anyone here please assist me with the SQL Script to count the total number of EV Index Volume ?

Because I need to estimate the total amount of time to perform Upgrade index metadata and schema version.

The index upgrade may take some time. For example, an Enterprise Vault server
with the minimum recommended specification may take 40 minutes or longer to
process 5,000 index volumes.

1 ACCEPTED SOLUTION

Accepted Solutions

AndrewB
Moderator
Moderator
Partner    VIP    Accredited

give this a try:

Use EnterpriseVaultDirectory

select count (*) from IndexVolume

View solution in original post

2 REPLIES 2

AndrewB
Moderator
Moderator
Partner    VIP    Accredited

give this a try:

Use EnterpriseVaultDirectory

select count (*) from IndexVolume

John_Santana
Level 6

Thanks Andrew,

Cool, the script works out just right for me :)

USE enterprisevaultdirectory 

SELECT Count (*) 
FROM   indexvolume