Tagged Questions

ETL is an acronym for Extract, Transform, and Load. It refers to a process of extracting data from source systems, transforming the data in some way (manipulating it, filtering it, combining it with other sources), and finally loading the transformed data to target system(s).

learn more… | top users | synonyms

22
votes
15answers
4k views

alternatives to SSIS

What is a good,stable and preferably free alternative to SQL Server Integration Services? I'm so tired of this buggy piece of software.
19
votes
10answers
565 views

Unit testing large blocks of code (mappings, translation, etc)

We unit test most of our business logic, but are stuck on how best to test some of our large service tasks and import/export routines. For example, consider the export of payroll data from one system ...
11
votes
11answers
62k views

Import Excel spreadsheet columns into SQL Server database

I have an excel spreadsheet that I want to import select columns into my database table. the wiz didn't offer that option. any easy code options? Thanks newbie
8
votes
1answer
2k views

Using Pentaho Kettle, how do I load multiple tables from a single table while keeping referential integrity?

Need to load data from a single file with a 100,000+ records into multiple tables on MySQL maintaining the relationships defined in the file/tables; meaning the relationships already match. The ...
8
votes
7answers
1k views

C# Importing Large Volume of Data from CSV to Database

What's the most efficient method to load large volumes of data from CSV (3 million + rows) to a database. The data needs to be formatted(e.g. name column needs to be split into first name and last ...
8
votes
6answers
384 views

Data in different resolutions

I have two tables, records are being continuously inserted to these tables from outside source. Lets say these tables are keeping statistics of user interactions. When a user is clicking a button the ...
8
votes
2answers
3k views

Is it possible to use relative paths for SSIS packages dtsConfig files?

I am trying to make our SQL Server Integration Services packages as portable as possible and the one thing that is preventing that is that the path to the config is always an absolute path, which ...
7
votes
2answers
1k views

In Powershell, what's the most efficient way to split a large text file by record type?

I am using Powershell for some ETL work, reading compressed text files in and splitting them out depending on the first three characters of each line. If I were just filtering the input file, I ...
7
votes
6answers
1k views

What's the best way to read a tab-delimited text file in C#

We have a text file with about 100,000 rows, about 50 columns per row, most of the data is pretty small (5 to 10 characters or numbers). This is a pretty simple task, but just wondering what the best ...
6
votes
2answers
404 views

SQL Server stored procedure conversion to SSIS Package

Problem: currently we have numerous stored procedures (very long up to 10,000 lines) which were written by various developers for various requirements in last 10 years. It has become hard now to ...
6
votes
3answers
3k views

How to extract data from Google Analytics and build a data warehouse (webhouse) from it?

I have click stream data such as referring URL, top landing pages, top exit pages and metrics such as page views, number of visits, bounces all in Google Analytics. There is no database yet where all ...
5
votes
1answer
58 views

How should I perform automated testing of SQL ETL Scripts & SPROCs?

We have a number of DTSX Packages that Extract-Transform-Load data from a number of legacy Pervasive Databases -> SQL Server 2k8 R2. (via ODBC) The majority of our ETL process T-SQL scripts The ...
5
votes
3answers
588 views

Java ETL: hard to find a suitable one

I'm looking for an embeddable Java ETL, i.e., an Extract Transform Load engine that can be called from Java code. I'm finding it surprisingly hard to find a suitable one. I'm mainly looking at ...
5
votes
5answers
1k views

SQL Server Management Studio: Import quietly ignoring 99.9% of data

The Problem i'm trying to import data into a table using SQL Server Management Studio's Import Data task. It only brings in 26 rows, out of the original 49,325. (Edit: That's where 99.9% comes from: ...
5
votes
2answers
2k views

Spring-Batch for a massive nightly / hourly Hive / MySQL data processing

I'm looking into replacing a bunch of Python ETL scripts that perform a nightly / hourly data summary and statistics gathering on a massive amount of data. What I'd like to achieve is Robustness - ...
5
votes
2answers
238 views

Common Lisp condition system for transfer of control

I'll admit right up front that the following is a pretty terrible description of what I want to do. Apologies in advance. Please ask questions to help me explain. :-) I've written ETLs (Extract, ...
5
votes
1answer
273 views

Module or tool for web-based data import and ETL?

I'm going to be adding a feature to a web application that allows users to import data. I don't want to reinvent wheel, so I am looking for any module I could integrate that would handle this. The ...
5
votes
3answers
537 views

For developers, is it worth it to learn/use SSIS?

I'm starting to get involved in quite a bit of ETL work a my current job, and everyone seems to be pretty partial to SSIS. I'm struggling trying to do the most trivial transformations through BI ...
5
votes
3answers
895 views

How to best insert 350,000 rows with ADO.Net

I have a csv file with 350,000 rows, each row has about 150 columns. What would be the best way to insert these rows into SQL Server using ADO.Net? The way I've usually done it is to create the SQL ...
4
votes
2answers
595 views

What is the required language knowledge to use Informatica effectively?

In the next few weeks, my company will be engaging multiple vendors to establish a choice for a common global ETL tool - not necessarily one that can't be broken from, but just where our license ...
4
votes
1answer
229 views

What are all recommended books for ETL? [closed]

I would like to know the famous & recommended books for ETL. I am searching for books which cover patterns, architecture, and handling huge volumes of data in ETL. Could you recommend notable ...
4
votes
2answers
2k views

PostgreSQL to Data-Warehouse: Best approach for near-real-time ETL / extraction of data

Background: I have a PostgreSQL (v8.3) database that is heavily optimized for OLTP. I need to extract data from it on a semi real-time basis (some-one is bound to ask what semi real-time means and ...
4
votes
4answers
859 views

Straight Java/Groovy versus ETL tool (Talend/etc) - what libraries would you use?

Assume you have a small project which on the surface looks like a good match for an ETL tool like Talend. But assume further, that you have never used Talend and furthermore, you do not trust "visual ...
4
votes
3answers
439 views

How to prevent CAST errors on SSIS?

The question Is it possible to ask SSIS to cast a value and return NULL in case the cast is not allowed instead of throwing an error ? My environment I'm using Visual Studio 2005 and Sql Server ...
4
votes
3answers
2k views

Is Pentaho ETL and Data Analyzer good choice?

I was looking for ETL tool and on google found lot about Pentaho Kettle. I also need a Data Analyzer to run on Star Schema so that business user can play around and generate any kind of report or ...
4
votes
7answers
1k views

Data extraction with Excel

I monthly receive 100+ excel spreadsheet from wich i take a fixed range and paste in other spreadsheet to make a report. Im trying to write a vba script to iterate my excel files and copy the range ...
4
votes
5answers
971 views

How to approach an ETL mission?

I am supposed to perform ETL where source is a large and badly designed sql 2k database and a a better designed sql 2k5 database. I think SSIS is the way to go. Can anyone suggest a to-do list or a ...
4
votes
8answers
5k views

Please recommend a powerful Java based ETL framework

Looking for the enterprise level, open source :) Java ETL framework. Came across Clover.ETL but want to hear what people think of it...
3
votes
2answers
145 views

Bulk importing text files / VB2005 / SQL Server 2005

I've inherited a .NET app to support / enhance which reads in a couple of files of high hundreds of thousands of rows, and one of millions of row. The original developer left me code like :- ...
3
votes
1answer
56 views

Grails start two in-memory databases for dev/test?

Is there a way to start up two in-memory databases with grails? Specifically, I'd like to integration test my ETL process and allow reporting to be runnable in both development and test environments.
3
votes
2answers
480 views

What is the definition of realtime, near realtime and batch? Give examples of each?

I'm trying to get a good definition of realtime, near realtime and batch? I am not talking about sync and async although to me, they are different dimensions. Here is what I'm thinking Realtime ...
3
votes
5answers
819 views

PostgreSQL: Loading data into Star Schema efficiently

Imagine a table with the following structure on PostgreSQL 9.0: create table raw_fact_table (text varchar(1000)); For the sake of simplification I only mention one text column, in reality it has a ...
3
votes
2answers
367 views

Reporting Engine or Own reports?

My current task is to produce a report on a collection of fairly large linear data set (ie where value 10 depends upon some average factors from 9 8 7 6 5 4 3 etc The problem also is that this logic ...
3
votes
3answers
981 views

ETL Processing Design and Performance

I am working on a ETL process for a data warehouse using C#, that supports both SQL Server and Oracle. During development I have been writing stored procedures that would synchronize data from one ...
3
votes
5answers
588 views

sql server: can i insert a $ into a money field

i am inserting values like '$5.99' (or trying to insert) into a money field. it doesnt like the dollars sign i am actually doing a bulk insert from a csv file. one of the columns in the csv file has ...
3
votes
1answer
860 views

ETL using Python

I am working on a data warehouse and looking for an ETL solution that uses Python. I have played with SnapLogic as an ETL, but I was wondering if there were any other solutions out there. This data ...
3
votes
3answers
632 views

MDF file size much larger than actual data

For some reason my MDF file is 154gigs, however, I only loaded 7 gigs worth of data from flat files. Why is the MDF file so much larger than the actual source data? More info: Only a few tables ...
3
votes
2answers
277 views

SSIS XMl processing

For my job I do very big imports of (product) data. Recently we started using SSIS and it sure works better then custom .net import tools. Still after 3 projects we figured out it's more efficient to ...
3
votes
1answer
455 views

Automated ETL / Database Migration Solution

I'm looking for an ETL solution that we can create a configure by hand and then deploy to run autonomously. This is basic transformation, it need not be feature heavy. Key points would be free or open ...
3
votes
1answer
681 views

ETL , Esper or Drools?

The question environment relates to JavaEE, Spring I am developing a system which can start and stop arbitrary TCP (or other) listeners for incoming messages. There could be a need to authenticate ...
3
votes
2answers
246 views

What books should be on the modern data warehouse architect's shelf?

I have a few on mine. Basically just the set of Kimball books: The Data Warehouse LifeCycle The Data Warehouse ETL Toolkit The Data Warehouse Toolkit Are there any others that should be included? ...
3
votes
3answers
329 views

How do I keep a table synchronized with a query in SQL Server - ETL?

I wan't sure how to word this question so I'll try and explain. I have a third-party database on SQL Server 2005. I have another SQL Server 2008, which I want to "publish" some of the data in the ...
3
votes
3answers
924 views

What are the required functionnalities of ETL frameworks?

I am writing an ETL (in python with a mongodb backend) and was wondering : what kind of standard functions and tools an ETL should have to be called an ETL ? This ETL will be as general purpose as ...
3
votes
4answers
2k views

informatica powercenter vs custom perl ETL job?

Most of my company uses powercenter informatica for Extract-Transform-Load type data move jobs between databases. However project I am on has a big custom Perl job with some Java thrown in for good ...
3
votes
4answers
9k views

What is the best way to save XML data to SQL Server?

Is there a direct route that is pretty straight forward? (i.e. can SQL Server read XML) Or, is it best to parse the XML and just transfer it in the usual way via ADO.Net either as individual rows or ...
3
votes
12answers
14k views

Easiest way to extract SharePoint list data to a separate SQL Server table?

Edited: What is the easiest way to scrape extract SharePoint list data to a separate SQL Server table? One condition: you're in a work environment where you don't control the SQL Server behind the ...
3
votes
7answers
262 views

how to determine if a record in every source, represents the same person

I have several sources of tables with personal data, like this: SOURCE 1 ID, FIRST_NAME, LAST_NAME, FIELD1, ... 1, jhon, gates ... SOURCE 2 ID, FIRST_NAME, LAST_NAME, ANOTHER_FIELD1, ... 1, jon, ...
3
votes
5answers
1k views

how can you parse an excel (.xls) file stored in a varbinary in MS SQL 2005?

problem how to best parse/access/extract "excel file" data stored as binary data in an SQL 2005 field? (so all the data can ultimately be stored in other fields of other tables.) background ...
2
votes
1answer
57 views

XML Code Analysis

I had several xml files wich are source code for flow implemented on an ETL (Informatica). I need to build a solution to analyse thoses XML and generate report about it. The goal is to check if the ...
2
votes
3answers
42 views

Monitor server, process, services, Task scheduler status

I am wondering if there is a way to monitor these automatically. Right now, in our production/QA/Dev environments - we have bunch of services running that are critical to the application. We also have ...

1 2 3 4 5 7