这是本文档旧的修订版!


A PCRE internal error occured. This might be caused by a faulty plugin

====== 如何批量删除导入/导出任务列表数据 ====== <note tip> 当任务计划列表中有大量数据需要删除时,我们可以采取在后台数据库执行批量删除的操作. </note> ===== 批次任务管理 ===== 打开左侧管理列表,点击[批次任务管理],你会发现有两个类型计划管理,分别是:导入计划管理 和 数据删除任务管理。 ==== 导入计划管理 ==== 清除此计划列表数据,需要登录后台数据库,执行以下命令,其中xxx.xxx.xxx.xxx为数据库服务器IP,root是数据库的用户名,astercc为密码,astercc10是数据库库名: <code> mysql -hxxx.xxx.xxx.xxx -uroot -pastercc astercc10 -A </code> 在系统页面中,你可以看到"导入计划ID"一列,如下图: {{:zh:常见问题及解答:导入计划管理01.png?750|}} 假如你需要删除ID从1到3000的列表数据,你可以执行如下命令: <code> delete from cc10_shellimports where id>=1 and id<=3000; </code> 当然,你也可以根据执行时间来删除列表数据,如:删除 2015-03-03 09:57:00 到 2015-04-03 12:34:00 执行的数据,执行如下命令: <code> delete from cc10_shellimports where exetime>='2015-03-03 09:57:00' and exetime<='2015-04-03 12:34:00'; </code> 或者 <code> delete from cc10_shellimports where exetime between '2015-03-03 09:57:00' and '2015-04-03 12:34:00'; </code> ==== 数据删除任务管理 ==== ===== 导出文件管理 ===== ==== 导出文件列表 ==== ==== 录音文件导出 ====

zh/常见问题及解答/如何批量删除导入_导出任务列表数据.1441518110.txt.gz · 最后更改: 2017/12/12 03:11 (外部编辑)
Recent changes RSS feed Debian Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki