How do I list all tables / columns in my database that have a full-text index?
Looking for answer similar to: List which columns have a full-text index in SQL Server 2005, but for SQL Server 2000 [sighs]
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To list the tables:
To list the columns for each table:
Note this will fail if full-text is not enabled.
If you want to customize the output, just examine the text of these two procedures to see what they are doing (I don’t have a 2000 instance handy, so can’t confirm, but keep in mind that these stored procedures might have system syntax that you can’t execute or access system tables that you can’t query directly).
sp_help_fulltext_tables:
http://msdn.microsoft.com/en-us/library/aa933422%28v=sql.80%29.aspx
sp_help_fulltext_columns:
http://msdn.microsoft.com/en-us/library/aa933445%28v=sql.80%29.aspx