我通过企业管理器创建了两个作业。现在,我要删除这些作业。我正在尝试通过此查询删除作业,但出现错误
<WebView
ref={ref => (this.webview = ref)}
source={{ uri: 'example/index.html' }}
originWhitelist={["*"]}
domStorageEnabled={true}
startInLoadingState={true}
allowFileAccess={true}
javaScriptEnabled={true}
onLoad={()=>injectJSFileFromWeb()}
/>
injectJSFileFromWeb() {
//give the filename according to your need
var jsFileName = require('../../../ios/build/../example/app');
}
如何解决这个问题 谢谢
答案 0 :(得分:1)
我通过此查询解决了我的问题
UPDATE mgmt_job_exec_summary SET status = 8, end_time = (sysdate-1) WHERE job_id = '8DDA2C82912B6C9FE050A8C035641D49';
commit;
然后再次执行此查询
exec mgmt_job_engine.delete_job('8DDA2C82912B6C9FE050A8C035641D49');
commit;