stophun / fdotoolbox

Automatically exported from code.google.com/p/fdotoolbox
0 stars 1 forks source link

Support new Task Type: SequentialProcess #326

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Add support for a new type of task: SequentialProcess

A sequential process contains 1:m SequentialOperations

Each SequentialOperation maps to a command exposed by FdoUtil.exe

The relevant commands in question are:
 - ExecuteSql
 - BulkCopy
 - RunTask
 - Destroy
 - CreateDataStore
 - ApplySchema

The current schema looks like this:

<SequentialProcess>
    <SequentialOperation command="<cmd>">
        <OperationArgument name="<argName>" value="<argValue>" />
        ...
    </SequentialOperation>
    ...
</SequentialProcess>

Unique to this type of task will also be the ability to convert a 
SequentialProcess to a batch file of equivalent FdoUtil.exe calls

Because RunTask is one of the supported commands, BulkCopy tasks and Join tasks 
can be nested within the SequentialProcess

Original issue reported on code.google.com by jumpinja...@gmail.com on 28 Sep 2010 at 12:32

GoogleCodeExporter commented 8 years ago
Fixed with r1206 and r1207

Original comment by jumpinja...@gmail.com on 17 Nov 2010 at 4:09