Tagged Questions

Rhino ETL is an open source Extract, Transform and Load (ETL) library for .NET

learn more… | top users | synonyms

7
votes
3answers
2k views

Rhino ETL opinions vs Kettle and SSIS [closed]

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 ...
3
votes
1answer
237 views

RhinoETL - Join two tables as input, write to two tables on output

I am writing an ETL job, in c#, using Rhino ETL I have a database on ServerA. This has 2 tables: (example) tblOrder OrderID CustomerName CustomerEmailAddress Transferred tblOrderLine ...
3
votes
5answers
347 views

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 { ...
2
votes
1answer
188 views

.NET ETL Process

First some background; we are developing a datawarehouse and doing some research on what tools to use for our ETL process. The team is very developer centric, everyone is knowledgeable with C#. So far ...
2
votes
2answers
612 views

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 ...
1
vote
1answer
189 views

Rhino eTL: Join operation with orphan rows

I'm using rhino ETL for the first time in a project, and I'm very impressed by its capabilities. I use a join-operation to match two datasources. Sometimes there might be missing data, so I ...
1
vote
1answer
138 views

successive Joins in Rhino.ETL

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
1
vote
1answer
922 views

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 ...
0
votes
0answers
23 views

How should I structure my ETL program?

I'm using Rhino ETL to do some etl from our production DB into our data warehouse. In all the examples I'm seeing, one class deriving from EtlProcess equates to a single logical data-move. So far I ...
0
votes
1answer
27 views

Why is my Rhino ETL process failing silently?

I have the following Rhino ETL process which fails silently. The process executes just fine however no round-trips are ever made to the DB, no exceptions are thrown and no data is ever inserted. ...
0
votes
2answers
53 views

doing a simple SSIS-style data flow in c# without any external libraries

I'm looking for an example of a simple data flow in C# without relying on SSIS or external libraries such as Rhino-ETL (which is a very good library, BTW). Requirements: One arbitrary ADO .Net data ...
0
votes
0answers
49 views

Merging Files with RhinoETL and filehelpers

Im trying to merge files which its definitions are on a XML file. I already have a class that builds a class based on a XML file and it uses the FixedLengthClassBuilder from Filehelper. The problem is ...
0
votes
1answer
130 views

FileHelpers - string length issue?

I'm moving some data about using rhino.etl One of the tables I'm moving has a column which stores a fairly large chunk of text for each row - though it's not that huge and there are only about 2000 ...
0
votes
1answer
124 views

ravendb from console app

I'm trying to get raven working in a rhino.etl console to import date from sql to raven. I have a RavenInstaller: public class RavenInstaller : IWindsorInstaller { public void ...
0
votes
1answer
80 views

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 ...