Move Indexing path of enterprise vault
Hi,
we are using enterprise vault 9.0.1 for exchange 2010 with SQL 2008 R2, now i want to move my indexing data to shared storage which is currently on local drive.
i have ev installation guide in which i found below procedure:
SELECT *
FROM IndexRootPathEntry
WHERE (IndexRootPathEntryId = '<ID FROM
LOG FILE>')
The SQL to update the location is as follows:
UPDATE IndexRootPathEntry
SET IndexRootPath = '<THE NEW LOCATION>'
WHERE (IndexRootPathEntryId = '<ID FROM
LOG FILE>')
i want to know how can i use this comman, what is mean by "*" / where = ???? which log file is talking about, ca some one tell me the exact procedure and steps??
OK,
On the EnterpriseVaultDirectory database run this:
SELECTIRPE.IndexRootPathEntryId AS 'Index Root Path ID',IRPE.IndexRootPath AS 'Path',CE.ComputerName AS 'EV Server'FROMdbo.IndexRootPathEntry AS IRPE,dbo.IndexingServiceEntry AS ISE,dbo.ComputerEntry AS CEWHEREIRPE.IndexServiceEntryId=ISE.ServiceEntryId ANDISE.ComputerEntryId=CE.ComputerEntryIdThat will list all your Index Root Path IDs, Path and EV Servers they belong to. Now run the following with the infor you recived from above:
UPDATE IndexRootPathEntry
SET IndexRootPath = 'NewLocation'
WHERE (IndexRootPathEntryId = 'IndexRootPathEntryId')For example:UPDATE IndexRootPathEntry
SET IndexRootPath = '\\server\new_index\location1'
WHERE (IndexRootPathEntryId = 1158CE34B7F728248852B0F1297F0ACED1810000vltsrv01')