Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion Groups
DB Engine
SQL ServerMSDESQL Server CE
Services
Analysis (Data Mining)Analysis (OLAP)DTSIntegration ServicesNotification ServicesReporting Services
Programming
CLRConnectivitySQLXML
Other Technologies
ClusteringEnglish QueryFull-Text SearchReplicationService Broker
General
Data WarehousingPerformanceSecuritySetupSQL Server ToolsOther SQL Server Topics
DirectoryUser Groups
Related Topics
MS AccessOther DB ProductsMS Server Products.NET DevelopmentVB DevelopmentJava DevelopmentMore Topics ...

SQL Server Forum / Other Technologies / Full-Text Search / November 2004

Tip: Looking for answers? Try searching our database.

FullTexted table

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Ed - 29 Nov 2004 20:51 GMT
Hi,
 I have a database that has about 100 tables.  How can I find out which
tables are full-text indexed?
Thanks

Ed
John Kane - 30 Nov 2004 05:31 GMT
Ed,
You can use the following system stored procedures to determine what tables
are FT Indexed:

sp_help_fulltext_tables

You can also use the following metadata function to gather more FT info:

select
ObjectProperty(object_id(N'<table_name>'),N'TableHasActiveFulltextIndex')
select
objectproperty(object_id(N'<table_name>'),N'TableFulltextChangeTrackingOn')
select
objectproperty(object_id(N'<table_name>'),N'TableFullTextBackgroundUpdateInd
exOn')
select
objectproperty(object_id(N'<table_name>'),N'TableFullTextPopulateStatus')

Regards,
John

> Hi,
>   I have a database that has about 100 tables.  How can I find out which
> tables are full-text indexed?
> Thanks
>
> Ed
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.