Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Process Design Question

Status
Not open for further replies.

Mdavis123

Programmer
Nov 12, 2001
56
0
0
US
I have designed a process that has 4 stages that would run overnight on a server. There are about 4k new transactions every month added to about 256k current transactions.

Stage 1 -Check for any unyet processed transactions.
Sort/Update them into 3 different categories.
Reject those that are unsortable.

Stage 2,3,4
Run specific process for each of the three categories, including sorting by date and 2 other criteria.
using the newly updated category in the Where clause.

My question: Do I have to check that stage 1 has comitted all transactions before starting stage 2?

Thanks to all and Happy Hollidays
Mike D

 
Hi. Not entirely sure what you mean but I think what you want is for each transaction to be processed as it completes stage 1 rather than fully completing stage 1 and then processing them all. If this is the case then you could try putting your secondary stages into triggers.

Durkin
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top