解决SVN:“Failed to run the WC DB work queue associated with”

文章转自:
http://www.youxia.org/2016/09/24342.html


摘要: svn checkout 代码是出现如标题的错误,提示我clean up ,clean up失败,于是网上搜到了这一clean up 失败的解决方法,clean up 后再进入代码update 就可以了 svn提交遇到恶心的问题,可能是因为上次cleanup中...

svn checkout 代码是出现如标题的错误,提示我clean up ,clean up失败,于是网上搜到了这一clean up 失败的解决方法,clean up 后再进入代码update 就可以了

svn提交遇到恶心的问题,可能是因为上次cleanup中断后,进入死循环了。

错误如下:


解决SVN:“Failed to run the WC DB work queue associated with”_第1张图片
image.png

解决方法:清空svn的队列

  1. 下载 sqlite3.exe(http://www.sqlite.org/download.html)
  2. 找到你项目的 .svn 文件,查看是否存在 wc.db
  3. 将 sqlite3.exe 放到 .svn 的同级目录
  4. 启动cmd执行
    sqlite3 wc.db “select * from work_queue”


    image.png
  5. 看到很多记录,下一步执行
    sqlite3 wc.db “delete from work_queue”


    解决SVN:“Failed to run the WC DB work queue associated with”_第2张图片
    image.png
  6. ok了,现在在到项目里面,执行cleanup,完全没问题了,图标状态也已经恢复了。

你可能感兴趣的:(解决SVN:“Failed to run the WC DB work queue associated with”)