How Does Bank Store Data in Batch Processing?

  • Thread starter Thread starter AllenHe
  • Start date Start date
  • Tags Tags
    Batch
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 2K views
AllenHe
Messages
74
Reaction score
0
Can anyone tell me how does the bank store data in the system of batch processing?
 
Physics news on Phys.org
I'm not sure what you're trying to ask. Wiki article for batch processing:

http://en.wikipedia.org/wiki/Batch_processing

I'm also not sure on what you mean how a bank stores data. Databases are usually designed to work with real time updates, but in the case of a database that is only updated via a batch process, the update data could be sorted, and then the database copied and updated to a second file, using the sorted update data. Everything but the sorting of the update data would involve sequential I/O (which would allow the database to be stored on magnetic tape). The sorting of the update data could also be done on multiple tape drives (at least 3), using a merge sort.

I don't think this is the answer you're looking for, so perhaps you could reword your original question.
 
Last edited:
Thanks. I think I got the answer.