We have an file upload system and would like to use the new MSSQL2012 semantic search feature for sql server 2012. Is that possible without using filetables?
This is our schema:
We have an file upload system and would like to use the new MSSQL2012 semantic search feature for sql server 2012. Is that possible without using filetables?
This is our schema:
我认为这里有两个问题。
您可以在不使用文件表的情况下使用语义搜索吗?
是的你可以。它可以在任何打开全文索引的表上使用。以下是先决条件列表: 链接。
基本上,您可以在加载到数据库中的数据上使用它。
第二个问题是您的模式是否从语义搜索中受益到什么程度。
查看您的架构,我了解您的数据库仅包含文档及其“描述”的路径。因此,您可以对数据库中的列启用语义搜索。它将允许对文件名和描述使用语义搜索,但不能对文档的内容使用。
为了对这些文档的内容使用语义搜索,您需要将这些文档网络存储在 SQL 数据库中。FileTable 结构有助于这项任务,尽管您可以选择另一种将整个文档存储在数据库中的方式。