rhino-etl

How can I use FluentFile in Rhino ETL DSL?

I have been playing around with the Rhino ETL library and really like the direction that it's going. However I have found that the bad part about it is the documentation is sparse and there doesn't seem to be enough good information on how to create these pipeline processes and especially using the DSL. I am just attempting to create a ...

Internal compiler variables appearing in the debugger Locals pane with Rhino ETL

If you disassemble C# you often see temporary variables inserted by the compiler with names such as: CS$1$0000 But what would cause them to appear in the debugger Locals/Auto panes? A colleague of mine is trying to maintain a tool written using Rhino ETL. The symbols for his assembly are reported as loaded correctly by the debugger. ...

Are there any alternatives to the SSIS fuzzy lookup for plain .Net code?

I'm converting several large ETL processes from SSIS over to Rhino-Etl. I got fed up with the "grahical programming" nature of SSIS. Hunting through hundreds of dialog boxes to figure out what the ETL process is doing gets old in a hurry. Several of the SSIS packages use the Fuzzy Match component for joining user accounts based on fir...

Rhino ETL opinions vs Kettle and SSIS

I am considering a tool for an ETL solution that has high daily demand and requires heavy business logic processing. I've tried kettle and SSIS so far, and also want to test for Rhino ETL. I don't care for the visual flow structure of both Kettle and SSIS and creating complex businesse rules seems really hard using them... Rhino ETL seem...

successive Joins in Rhino.ETL

Hi I have 3 tables i want to join in 1 table. How can i do that with Rhino.ETL ? I know how to join 2 tables, but not 3... Thanks John ...

Code in base class method not executing when using "base" keyword

I'm seeing a very strange problem when overriding an abstract method and trying to call the base class's method that I'm currently overriding. //In Dll "A" namespace Rhino.Etl.Core.Operations { using System; using System.Collections; using System.Collections.Generic; public class Row {} public interface IOperation ...