问题标签 [batch-updates]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
452 浏览

xml - "Element of parameter updates is missing or invalid" exception when deleting item from sharepoint repository

I'm getting an error

Element <Batch> of parameter updates is missing or invalid

when trying to delete a file in sharepoint repository. My request is:

I'm performing this call through java code in Tibco BusinessWorks process. The response I'm getting is

The Http Server replied with a 5XX status code

from IIS so the actual error comes from IIS logs. The interesting part is that this exact call works well when performed through soapUI. The above request is also from the IIS logs just to be sure how it looks when it gets there. Of course I'm calling a proper service which is repositoryurl/sites/Repo2/_vti_bin/Lists.asmx.

Would anyone have an idea on what I'm doing wrong?

0 投票
1 回答
354 浏览

entity-framework - 使用实体框架进行批量更新

谁能建议我如何使用实体框架处理批量更新?

例如:更新 100 到 1000 个 Id 之间的列表 (List) 的字段,该列表是主键。单独调用每个更新似乎开销很大并且需要很长时间。

0 投票
1 回答
700 浏览

titan - Titan 批处理图

我想向现有 200 万个节点和 10+ 百万条边的图形中的节点选择添加一个新属性 [有时还会添加边]。我想过使用 BatchGraph,但从他们的 WIKI 看来它不支持任何检索查询。

例如检索这些节点:gV('id',1).has('prop1','text1') 并将'prop1'更新为'text2'。

做这个的最好方式是什么。

0 投票
1 回答
670 浏览

batch-file - 如何使 SET 命令不等待应答?

我做了一个聊天程序,效果很好,我唯一的问题是 SET /P 命令会等到你按下某个东西然后按下 ENTER 键。我的代码有问题:

我想一直更新 TYPE 命令,但是你需要输入一些东西。无论如何我可以解决这个问题吗?编辑:我真的不想要另一个 cmd 屏幕

0 投票
2 回答
6046 浏览

java - Spring-JDBC batchUpdate 没有提交更改。这是一个已知的错误吗?

我正在从事的项目使用以下依赖项

有了这个我正在进行以下方法调用(1)

查看 Spring JDBCTemplate 中的源代码,似乎(因为驱动程序支持批量更新)调用PreparedStatement上的executeBatch()。但是,我没有看到数据库中更新的影响。

这是一个真正的错误还是我在这里错过了明显的错误?如果这个问题已经解决,请告知一个好的版本。请注意,我需要一个不依赖于其他 Spring 模块(例如 Spring Core 或 MVC)的版本。提前致谢。

0 投票
1 回答
834 浏览

java - mysql jdbc connector batch update exception update count not as expected

I am using batch insert from my Java application into mysql database for bulk data loading. For compiling a result of failed executions, we are handling BatchUpdateException in the following way:

I was running a case where all executions would fail (table does not exist). So ideally I would be having a fail reason added for every record.

However, I could find that all but the first record, were being added. When I debugged the code, I found that codes[0] is coming as '-1', whereas all other are coming as '-3' (which is Statement.EXECUTE_FAILED).

As per Javadocs:

Question: Is it that MySql connector/J does not set the update count correctly for the first execution failure in a batch, or I am missing something here? Has anyone come across any such scenario?

I am using connector/J 5.1.30; Mysql 5.5.24 on Ubuntu 12.04

0 投票
2 回答
75 浏览

batch-file - 如何比较两个文件

我带着另一个问题回来了,这次是关于 FC 控制台命令。我正在制作一个聊天程序,我的问题是:

我希望有人可以更改密码,但是如何检查密码是否与上一个密码相同?

编辑:感谢斯蒂芬的回答!

EDIT2:上面的命令不注意区分大小写的单词。但是我已经通过使用命令 FC 自己解决了这个问题。

0 投票
1 回答
1147 浏览

ember.js - Ember 数据批量保存到服务器

Ember Data 正在快速地从一个版本到另一个版本,保存数据的方法也随之发生了变化。现在使用 1.0.0-beta.8.2a68c63a 版本,正确的方法是更新记录,然后执行 record.save() 以触发返回服务器的 PUT 请求。使用我当前的应用程序,我一次更新多条记录,这可能涉及 50+ PUT ajax 请求返回服务器。我们担心性能和效率问题,并且没有找到任何用于执行批处理请求的文档。如果有的话,我们在网上发现了很多其他人正在寻求做同样的事情,但还没有找到好的解决方案。

现在我正在研究手动序列化这些对象并将它们保存回服务器,我认为这就是 Ember Data 的全部意义所在。因此,也许根本不使用 Ember Data 并手动编写 CRUD 请求并制作我自己的数据层来处理所有这些,并仅使用 ArrayControllers 和 ObjectControllers 将数据保存到 Handlebars 模板中并绑定到 Handlebars 模板中,这对我来说是最有利的。这样做的好处似乎是它可以按照我需要的方式工作(批处理请求),并且代码不会与未来版本的 Ember Data 中断。有什么想法或解决方案吗?

0 投票
2 回答
1142 浏览

windows - 用于截断文本文件中的前导零并写入新文件的窗口批处理脚本

请帮助使用 Windows 批处理脚本,该脚本将删除文本文件中的前导零并写入没有零的新文件。

输入文件格式

输出格式

谢谢你。

0 投票
4 回答
11790 浏览

java - 如何使用 Spring 在 Postgresql 中存储 java.util.ArrayList

我正在尝试批量插入一组 bean。bean 的属性之一是 ArrayList。批量更新失败,但有以下异常:

我不知道要使用哪种 Postgresql 数据类型来使 ArrayList 兼容。有没有一种方法可以在不更改其属性的数据类型的情况下对 bean 进行批量更新?


豆子:

表架构:

插入数据的方法:

例外:

有什么建议么?