What is Batch and Online Processing?

0

Batch I researched and saw that it is a batch processing .... Ta, but what does that mean? and what would a batch file look like? (refers solely to .bat extension?) and what would batch drives be? What's the difference of a batch move for an online move?

    
asked by anonymous 23.04.2017 / 21:38

2 answers

1

Good morning!

Batch processing means that it is a sequential processing, it only proceeds to the next step after finishing the current step.

The windows ".bat" file are batch scripts.

The difference between batch and online processing is the relationship between processing and registration.

In batch processing, all processing is done and the records are saved in a buffer (something like this). Then at a certain time (at the end of the day, at the end of the week, at the end of the month, at a certain time, etc.) the records are made, in the same processing sequence.

In online processing, logs are made immediately after processing.

It's more or less out there.

: -)

    
24.04.2017 / 15:51
0
  

[batch processing:] what does this mean?

This is a term for data processing that occurs through a batch of queued tasks, so the operating system only processes the next task after the previous task completes, according to Wikipedia .

  

What would a batch file look like?

On the Windows platform a batch file consists of one or more commands that will be executed in order.

In general terms, a batch file defines a set of data that will be used in serial processing.

  

What would batch drives be?

Without additional information, I imagine it to be a definition of movements (financial or otherwise) that occur in serial processing.

  

What's the difference of a batch move for an online move?

Online refers to the rendering environment, not the rendering method.

    
24.04.2017 / 16:00