• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Reading from two different tables in Spring Batch and writing into single Flatfile

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

My requirement is to read from two different tables (both tables are in same database) and then write into single flat file (~ tilde separated file). le

Requirement is like:

In Flat file, first I need to write all data from table 1 followed by all data of table 2.

How to read two different tables, how to create tilde (~) separated file?

I am new to Spring Batch. Any help is very much appreciated.

Looking forward to hearing from you soon. Thank you very much.
 
Ranch Hand
Posts: 814
Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you write table 1 and then table 2 into single flat file then its possible without using Spring batch but if you want to write simultaneously into single flat file then you can choose parallel processing.
Let see what other will mention here
reply
    Bookmark Topic Watch Topic
  • New Topic