|
Group: Forum Members
Posts: 2K,
Visits: 6.6K
|
Ah, I forgot that you are living the love with DB2.
I'd say that you will likely be be better served using DB2 to do the heavy lifting. It appears the DB2 has the equivalent of CLR stored procedures and they appear to be able to be written in VB.NET or C# too! It also has normal SQL sprocs too. The nice thing about the compiled sprocs is that they are efficient at managing complex rules.
Now, the next question is are these files and who processes them?
If the user will be indicating the files to process, then I might try to load the files locally into a BO (doing the parsing along the way), then load that data into a table on DB2, then call the sproc to do the work.
If the files are in some central repository, you could theoretically get DB2 to do the file parsing work also.
If it takes a while to do the processing, you could of course use another thread.
Just some ideas.
Good luck!
|