To migrate the full-text indexes you should script them out and run them on
the destination server.
To migrate built catalogs review the following:
http://support.microsoft.com/kb/240867/en-us
For sql 2005 do the following:
ALTER DATABASE database_name SET OFFLINE on both source and destination
stop msftesql on both
copy the catalog
alter the database files on the destination server to point to the catalog
location
ie, ALTER DATABASE database_name MODIFY FILE ( NAME = sys_fulltext,
FILENAME = 'c:\dump')
start msftesql
ALTER DATABASE database_name SET ONLINE

Signature
Hilary Cotter
Director of Text Mining and Database Strategy
RelevantNOISE.Com - Dedicated to mining blogs for business intelligence.
This posting is my own and doesn't necessarily represent RelevantNoise's
positions, strategies or opinions.
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com
> Hi everyone,
>
[quoted text clipped - 9 lines]
> Thanking you,
> Al.