I need to design a system which will process hundreds of source files (different format fixed width and delimited files) and convert to one target files. There should be two interfaces one is command line other web user interface? Command line interface to run the transform job though batch and web user interface to define the format of source file and mapping details of source file to target file i.e. one time job for each source file.

All the source files are fixed width or delimited files.

What is the correct approach? Should I create one stage table for each source file to the stage data? Should I create one stage table on runtime when user will define of layout (Most are fixed width mainframe files) of source file? Should I create only one generic table, containing around 100 columns all varchar type?

I am looking for the best approach to design the system. Performance is very critical for this app. There are hundreds of files and we need to transform all the files daily within certain time.

Thanks in Advance Akshay

link|improve this question
1  
The question is not clear. It's not clear why, for example, you use the terminology of databases in the second paragraph and whether a DB is an essential requirement. What do you mean by process hundreds of source files? What kind of source files? – pavium Sep 22 '09 at 5:57
All the source files are fixed width or delimited files. DB is not essential if we have some good reason of not to use it. – user176951 Sep 22 '09 at 6:05
1  
You should be thinking use a DB if there's a good reason to do so and for all I know, there is a good reason, but you still haven't given enough information on which to base a design decision. – pavium Sep 22 '09 at 6:17
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown