Re: client sided applications

2012-08-06 Thread john feng
You know the data irregularity pattern that needs to be fixed, thus if you have a dbms system such as Oracle, DB2/UDB, etc., then load these csv files into tables to hold all the data, then write the sql scripting or stored procedures to fix the irregular data. (Note, before loading the files, if t

RE: client sided applications

2012-08-02 Thread Martin Rosellen
Thanks to you all for the quick answers. right now I am trying to implement a webapp that should do data cleaning and analysis. I already have a prototype written in Java for the cleaning part and it is not using struts yet. Do you mean that you've written a Java application that connects to th

RE: client sided applications

2012-08-01 Thread Chad.Davis
> right now I am trying to implement a webapp that should do data cleaning > and analysis. I already have a prototype written in Java for the cleaning part > and it is not using struts yet. Do you mean that you've written a Java application that connects to the db to do this work? > > Because

Re: client sided applications

2012-08-01 Thread john feng
It looks like we should not reply too soon. Is the data cleansing a continous task or one time thing? It looks it's a repeated task. Where is the data in database or file system and file format? If in the database, using Java application is not any better than the db procedures that can be invoked

Re: client sided applications

2012-07-31 Thread Lukasz Lenart
2012/7/31 Martin Rosellen : > Hi@all, > > right now I am trying to implement a webapp that should do data cleaning and > analysis. I already have a prototype written in Java for the cleaning part > and it is not using struts yet. > > Because I do not want to hire a big server I tend to let the clie

Re: client sided applications

2012-07-31 Thread Maurizio Cucchiara
First or later your data will send through the application server, in this case struts could help you. Maybe the rest and json plugins are the best candidate for your use case. Since struts2 is able to handle json and rest architecture, every js client library and every related tutorial could help

client sided applications

2012-07-31 Thread Martin Rosellen
Hi@all, right now I am trying to implement a webapp that should do data cleaning and analysis. I already have a prototype written in Java for the cleaning part and it is not using struts yet. Because I do not want to hire a big server I tend to let the client do most of the calculating. Is