Share via


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

주의

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

  • Use the Remove method of the FullTextCatalogs collection.

    [!참고]

    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)

[!참고]

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.