今天要备份一个数据库,结果发现死活备份不了。

错误日志大概就是:

The backup of the file or filegroup "sysft_db_FullText" is not permitted because it is not online. BACKUP can be performed by using the FILEGROUP or FILE clauses to restrict the selection to include only online data.

显然是全文索引找不到目录,那既然不用了,就删掉呗,如何删除呢?

一步步来:

1. 查看当前数据库的全文索引信息

--全文索引目录
sp_help_fulltext_catalogs
--全文索引列
sp_help_fulltext_columns
--全文索引表
sp_help_fulltext_tables

 

2. 既然找到了。那就删掉它吧。

首先要删除全文索引index,再删除全文索引目录

 FULLTEXT CATALOG  iss

 

然后就搞定了!


 

相关文章:

  • 2022-12-23
  • 2022-01-01
  • 2021-05-28
  • 2021-11-08
  • 2021-06-08
  • 2021-10-22
  • 2021-09-14
  • 2022-12-23
猜你喜欢
  • 2021-07-07
  • 2022-01-25
  • 2021-11-16
  • 2021-11-13
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案