BeginParallelBlock, EndParallelBlock
Begin/EndParallelBlock are used to implement inter-operation parallelism that means executing a multiple operators in parallel. BeginParallelBlock starts a block of operations. EndParallelBlock ends the block. All operations inside the block are executed in parallel. For example, you can put several Load operation in a parallel block to load the tables in parallel.
Last updated on