-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
67dbb11
commit ec054aa
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
modules/ETLtest/resources/ETLs/SProcModifiedSinceNoSourceMultiStep.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<etl xmlns="http://labkey.org/etl/xml"> | ||
<name>Stored Proc Modified Since No Source Multi Step</name> | ||
<description>Multi Step using Modified Since filter and SP with no SP source</description> | ||
<transforms> | ||
<transform id="step1" type="org.labkey.di.pipeline.TransformTask"> | ||
<description>Copy to target</description> | ||
<source schemaName="etltest" queryName="source" /> | ||
<destination schemaName="etltest" queryName="target" bulkLoad="true" targetOption="append"> | ||
<alternateKeys> | ||
<column name="id"/> | ||
</alternateKeys> | ||
</destination> | ||
</transform> | ||
<transform id="step2" type="StoredProcedure"> | ||
<procedure schemaName="etltest" procedureName="etlTest" useTransaction="false"> | ||
<parameter name="@testMode" value="1"/> | ||
<parameter name="testInOutParam" value="before"/> | ||
</procedure> | ||
</transform> | ||
</transforms> | ||
<incrementalFilter className="ModifiedSinceFilterStrategy" timestampColumnName="modified" /> | ||
<schedule> | ||
<poll interval="60m" /> | ||
</schedule> | ||
</etl> |