Failed to run the WC DB work queue associated with 错误的解决

转载自 http://blog.csdn.net/alan00000/article/details/44084455

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

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

错误如下:

解决方法:清空svn的队列

1.下载sqlite3.exe

2.找到你项目的.svn文件,查看是否存在wc.db

3.将sqlite3.exe放到.svn的同级目录

4.启动cmd执行sqlite3 .svn/wc.db "select * from work_queue"

5.看到很多记录,下一步执行delete from work_queue

6.ok了,现在在到项目里面,执行cleanup,完全没问题了,图标状态也已经恢复了。

时间: 2024-08-28 18:00:55

Failed to run the WC DB work queue associated with 错误的解决的相关文章

[转]Failed to run the WC DB work queue associated with 错误的解决

svn checkout 代码是出现如标题的错误,提示我clean up ,clean up失败,于是网上搜到了这一clean up 失败的解决方法,clean up 后再进入代码update 就可以了 svn提交遇到恶心的问题,可能是因为上次cleanup中断后,进入死循环了. 错误如下: 解决方法:清空svn的队列 1.下载sqlite3.exe 2.找到你项目的.svn文件,查看是否存在wc.db 3.将sqlite3.exe放到.svn的同级目录 4.启动cmd执行sqlite3 .sv

svn: Failed to run the WC DB work queue associated svn的bug解决

第一步,下载sqlite 官方网址  :https://www.sqlite.org/download.html 第二步:解压放在c盘 第三步:配置环境变量 第四步:找到工作空间的.svn文件,cmd进入执行以下命令 sqlite3 wc.db "select * from work_queue" sqlite3 wc.db "delete from work_queue" sqlite3 wc.db "delete from wc_lock 第五步:te

Failed to run the WC DB work queue associated with

svn checkout 代码是出现如标题的错误,提示我clean up ,clean up失败,于是网上搜到了这一clean up 失败的解决方法,clean up 后再进入代码update 就可以了 svn提交遇到恶心的问题,可能是因为上次cleanup中断后,进入死循环了. 错误如下: 解决方法:清空svn的队列 1.下载sqlite3.exe 2.找到你项目的.svn文件,查看是否存在wc.db 3.将sqlite3.exe放到.svn的同级目录 4.启动cmd执行sqlite3 .sv

Test run failed: Instrumentation run failed due to 'Process crashed.'解析

Test run failed: Instrumentation run failed due to 'Process crashed.'解析 Test run failed: Instrumentation run failed due to 'Process crashed.'解析

AS中一个报错解决:LoggedErrorException: Failed to run command初用Android Studio注意

Error:Execution failed for task ':app:dexDebug'. > com.android.ide.common.internal.LoggedErrorException: Failed to run command: D:\Android\android-sdk\build-tools\21.1.1\dx.bat --dex --no-optimize --output E:\开源学习\Canvas\app\build\intermediates\dex\d

Failed to connect socket to '/var/run/libvirt/libvirt-sock': No such file or directory错误处理

redhat7 ERROR    Failed to connect socket to '/var/run/libvirt/libvirt-sock': No such file or directory yum -y install avahi systemctl start libvirtd Failed to connect socket to '/var/run/libvirt/libvirt-sock': No such file or directory错误处理

yii框架:CDbConnection failed to open the DB connection: could not find driver的解决办法

这个问题是因为php中缺少pdo mysql造成的.解决方法是为php添加此扩展.前往你最早的php安装文件,进入ext/pdo_mysql/目录下,然后./configure --with-php-config=/home/work/service/php_for_apache2/bin/php-config --with-pdo-mysql=/home/work/service/mysql 然后make make install,然后屏幕上会提示pdo库安装到的路径,把此路径记下来然后添加到

Bamboo bootstrap failed: Failed to run pre-bootstr

Bamboo bootstrap failed: Failed to run pre-bootstrap upgrade tasksSkip to end of metadata Problem After installing / starting Bamboo the following message is shown on the UI: The following appears in the atlassian-bamboo.log1 Bamboo bootstrap failed:

SVN报Previous operation has not finished; run 'cleanup' if it was interrupted错误的解决方法

做着项目突然SVN报Previous operation has not finished; run 'cleanup' if it was interrupted,进度又要继续,烦.百度一下发现很多解决方案,自己马上尝试的解决,还有点意思,记录一下. 1.下载sqlite3.exe    2.找到你项目的.svn文件,查看是否存在wc.db 3.将sqlite3.exe放到.svn的同级目录 4.启动cmd执行sqlite3 .svn/wc.db "select * from work_que