Hi All,

Usecase - Fetch very very large csv file (1 GB). Insert into a DB and then
execute a stored procedure

Implementation -> ListSFTP -> FetchSFTP -> SplitRecord (splitting into
smaller files)-> PutDatabaseRecord -> ExecuteSQL

Problem -> SplitRecord does not tell me how many files it is generating.
Assuming it generates 10 files, ExecuteSQL executes 10 times since
PutDatabaseRecords executes 10 time

We would like to execute ExecuteSQL only once at the end of the flow ones
all of PutDatabaseRecord operations are complete.

How do we implement this?

Thanks
Anil

Reply via email to