Tagged Questions
6
votes
4answers
349 views
using Hibernate to loading 20K products, modifying the entity and updating to db
I am using hibernate to update 20K products in my database.
As of now I am pulling in the 20K products, looping through them and modifying some properties and then updating the database.
so:
load ...
2
votes
3answers
188 views
How do you handle timezones for data processing?
curious how people have solved this problem...
I have a series of jobs that run overnight that roll up reports based on that day's data for customers. They're now asking for timezone support.
One of ...
1
vote
2answers
140 views
Processing XML data for JSP
I have a form/calculator, which posts to itself some data, this data is then calculated by dispatching a servlet and the results are output as xml. The dispatcher code is shown below:
//create ...
0
votes
1answer
465 views
Optimal update in resultset on Sybase IQ
Im looking to rewrite code that update a table on a Sybase IQ database v14 that does the following:
selects all the records in the table and extracts some data to file
updates the extracted to file ...
0
votes
1answer
721 views
Processing CSV files from the Web using embedded Java database
Short version: assuming I don't want to keep the data for long, how do I create a database programmaticly in HSQLDB and load some CSV data into it to? My schema will match the files exactly and the ...