Our current full text catalog default location is C:\Program Files\Microsoft SQL Server\MSSQL.5\MSSQL\FTData, we want change the default location to c:\data\MSSQL.5\FTData, so all the FT catalog will be created in this new location. Can anyone tell me how to do it?
Thanks
ShihChao
See SQL Server 2005 Books Online topic:
CREATE FULLTEXT CATALOG (Transact-SQL)
If you use T-SQL you can specify the path.
The topic states “IN PATH 'rootpath'
Is the root directory for the catalog. If rootpath is not specified, the new catalog will be located in the default directory specified at setup.”
Full-text catalogs must be created on a local hard disk drive associated with an instance of SQL Server. rootpath cannot be a relative path; it must reside on a drive on the same computer.
As you probably know you can specify the path when you use the UI. It does not default to any path.
|||Also…you can use regedit at your own risk to change the default fulltext path
HKEY_LOCAL_MACHINE/Software/Microsoft/Microsoft SQL Server/MSSQL.x/MSSQLServer/FullTextDefaultPath – specify path
The restart SQL Server service
|||Thanks all all the replies
No comments:
Post a Comment