次の方法で共有


FullTextCatalogs Collection

この機能は、将来のバージョンの Microsoft SQL Server では削除される予定です。新規の開発作業ではこの機能を使用しないようにし、現在この機能を使用しているアプリケーションは修正することを検討してください。

The FullTextCatalogs collection contains FullTextCatalog objects that reference Microsoft Search persistent data organized in full-text catalogs.

現在のオブジェクトを表す SQL-DMO オブジェクト モデル

Properties

Count Property

Methods

Add Method

Refresh Method

Item Method

Remove Method (Collections)

解説

With the FullTextCatalogs collection, you can:

  • Create a new Microsoft Search full-text indexing catalog.
  • Remove a Microsoft Search full-text indexing catalog.

To remove a Microsoft Search full-text indexing catalog

  1. Use the Remove method of the FullTextCatalogs collection.

    ms143024.note(ja-jp,SQL.90).gifメモ :
    Removing a Microsoft Search full-text indexing catalog removes all data maintaining catalog definition and is not recoverable. The Stop method of the FullTextCatalog object inactivates a Microsoft Search full-text indexing catalog and does not affect index defining data.

When using the Item or Remove method, the FullTextCatalogs collection supports member identification using either name or ordinal reference syntax. For example:

Set oFullTextCatalog = oDatabase.FullTextCatalogs("People")

Or

Set oFullTextCatalog = oDatabase.FullTextCatalogs(2)
ms143024.note(ja-jp,SQL.90).gifメモ :
Using the FullTextCatalogs collection to create or remove Microsoft Search full-text indexing catalogs requires appropriate privilege. The Microsoft SQL Server login used for SQLServer object connection must be a member of the fixed role db_ddladmin or a role with greater privilege.