简体   繁体   English

陷入SQL Server全文搜索

[英]Gotchas with SQL Server Full-Text Search

I want to compile a list of gotchas when using SQL Server full-text search in all versions. 我想在所有版本中使用SQL Server全文搜索时编译陷阱列表。

For instance, Here's a SQL Server Full-Text gotcha: 例如,这是一个SQL Server全文问题:

SQL Server 2008 R2 has a new feature called Data-Tier Applications - which is a way to package a database schema meant to be deployed elsewhere. SQL Server 2008 R2有一个名为Data-Tier Applications的新功能 - 这是一种打包要在其他地方部署的数据库模式的方法。 Certain objects like Full-Text Catalogs can't be packaged and must first be remove before a "DAC Pack" can be created. 某些对象(如全文目录)无法打包,必须先删除才能创建“DAC包”。 So you can't create a DAC Pack when there's a Full-Text Catalog in the database. 因此,当数据库中存在全文目录时,您无法创建DAC包。

Can anyone else think of any other SQL Server Full-Text gotchas? 任何人都可以想到任何其他SQL Server全文陷阱? Thanks. 谢谢。

If you detach a database with a full text catalog, the catalog is not a part of the normal database files, it has its own storage in a folder that has to be copied with the database mdf, ldf, and ndf files. 如果使用全文目录分离数据库,则目录不是普通数据库文件的一部分,它在必须使用数据库mdf,ldf和ndf文件复制的文件夹中有自己的存储。 I've seen this be a problem for some people but it is recoverable. 我已经看到这对某些人来说是一个问题,但它是可以恢复的。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM