Jwilmsen,
Yes, I do. I worked with a client who FT Indexed a table with 180 million
rows using SQL Server 2005. Are the FT Catalog files on the same drive as
the as the database files? If so, can you re-locate it to another drive
separate from the database files? Does your FT-enabled table have a
clustered index? If not, then create a Clustered index.
What are the run-time values for the following new FTS related sp_configure
parameters? (with show advanced options enabled):
sp_configure
/* -- (edited, new FTS related parameters only)
name minimum maximum config_value
run_value
----------------------------------- ----------- ----------- ------------ -----------
ft crawl bandwidth (max) 0 32767 100 100
ft crawl bandwidth (min) 0 32767 0 0
ft notify bandwidth (max) 0 32767 100 100
ft notify bandwidth (min) 0 32767 0 0
max full-text crawl range 0 256 4 4
if possible, I'd recommend upgrading to the Sept CTP version of SQL Server
2005 as past CTP versions have not be optimized for large.
MaxPropStoreCachedSize is a registry key value that is more approprate for
SQL Server 2000. SQL Server 2005 FT Indexing can be optimized via other
means.
Thanks,
John

Signature
SQL Full Text Search Blog
http://spaces.msn.com/members/jtkane/
> Anyone have any experience building large full text indexes on SQL
> Server 2005. I am trying to build a 100 Million row index using
[quoted text clipped - 20 lines]
>
> Thanks in Advance.
jwilmsen@gmail.com - 28 Sep 2005 14:23 GMT
My FT catalog is on the the same disk. I could move it but it would be
off the RAID at that point. My FT enabled table does have a clustered
index and the stats are up to date.
My runtime values are the defaults which you have printed there.
I did add another gig of ram yesterday and my rate went up to 1.5M
rows/hr but overnight has slowed back down to ~500K rows/hr with just
of 49M rows indexed.
It sounds like it might be worth upgrading to the Sept CTP.
If you don't mind me asking, do you have any information on your index?
How long did it take to build on roughly what size rows and hardware?
Thanks,
Jim