【正确答案】
D
【答案解析】解析:Explanation: Backing up a database does not back up full-text index data in full-text catalogs. The full-text catalog files are not recovered during a Microsoft SQL Server recovery. However, if full-text indexes have been defined for tables, the metadata for the full-text index definitions are stored in the system tables in the database containing the full-text indexes. After a database backup is restored, the full-text index catalogs can be re-created and repopulated. Note 1: Setting up a full-text search is a three-step procedure: 1. Make sure that the full-text indexing feature has been installed with your SQL Server. The full-text index is installed as a service in the system. It would not have to be reinstalled after restoring a database. 2. Create a catalog in the operating system to store the full-text indexes. A catalog can contain the indexes from one or more tables, and it is treated as a unit for maintenance purposes. In general, you shouldn't need more than one catalog per database. The catalog is saved outside the database on separate files 3. Before you can implement a full-text search in a given database, you must ensure that the full-text search indexes are populated regularly. In this scenario we must recreate the index by repopulating the full-text catalog. Note 2: A SQL Server 2000 full-text index provides support for sophisticated word searches in character string data. The full-text index stores information about significant words and their location within a given column. This information is used to quickly complete full-text queries that search for rows with particular words or combinations of words. The full-text indexes are contained in full-text catalogs. Full-text catalogs and indexes are not stored in the database to which they belong. The catalogs and indexes are managed separately by the Microsoft Search service. Backing up a database does not back up full-text index data in full-text catalogs. However, if full-text indexes have been defined for tables, the meta data is backed up when a database backup is created. Incorrect Answers: A: The catalog already exists. The catalog is stored outside SQL server and would not be affected by the failure and restoration of the database. B: Rebuildning the full text catalog will not enable the Journalist to run the full-text queries. The catalogs would have to be repopulated as well. C: The index should be repopulated since it already exists from the backup. There is no need to recreate it.