Hi
I am trying to restore a database that has full text catalog on the table and i get this following error :
Msg 7627, Level 16, State 1, Line 5
Cannot create the full-text catalog in the directory "H:\MSSQL\MSSQL.1\MSSQL\FTData\LogMessageCatalog" for the clustered server. Only directories on a disk in the cluster group of the server can be used.
Msg 3156, Level 16, State 50, Line 5
File 'sysft_LogMessageCatalog' cannot be restored to 'H:\MSSQL\MSSQL.1\MSSQL\FTData\LogMessageCatalog'. Use WITH MOVE to identify a valid location for the file.
Msg 3119, Level 16, State 1, Line 5
Problems were identified while planning for the RESTORE statement. Previous messages provide details.
Msg 3013, Level 16, State 1, Line 5
RESTORE DATABASE is terminating abnormally.
The syntax i am using to restore a database is :
RESTORE DATABASE TESTDB FROM DISK='C:\ClusterStorage\BACKUP1\BACKUP\TEST.BAK'
WITH
MOVE 'TESTDB' TO 'C:\ClusterStorage\DATA1\DATA\TEST.MDF',
MOVE 'TEST_log' TO 'C:\ClusterStorage\log1\LOG\TEST_LOG.MDF',
MOVE 'sysft_LogMessageCatalog' TO 'C:\ClusterStorage\DATA1\DATA\FT\sysft_LogMessageCatalog',
REPLACE, STATS=5
Am i doing something wrong here ?