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).
0
votes
0answers
12 views
QA testing process
I just had a question about the testing process. Who writes the test scenarios and who writes the test cases? Does the tester do anything besides test the test case or do they write the test case ...
0
votes
0answers
13 views
Who is the first one who introduced the ETL model? [closed]
I am not an expert in database or data warehousing.
I am searching for the original reference about the ETL (Extract Transform Load) model.
Who is the first one who talked about it? any paper or ...
0
votes
1answer
16 views
Errors in SQL Kettle Transformation
I need to add some colums values to the stream final output. I am using "add constant" but it returns the error shown bellow:
2013/05/16 17:33:48 - Sort rows.0 - The number of binary string to
...
0
votes
1answer
12 views
Kettle join two datastream for a table output
How is the method for join 2 data stream from 2 sources.
I have 2 MSSQL tables and i need to pull the data to a MySQL table BUT i dont have enough fields in MSSQL stream to fit the MySQL table not ...
1
vote
1answer
32 views
How can I extract values from a custom flat file header into variables?
I have been stuck for a while with this problem and I have no clue. I am trying to upload multiple CSV files which has dates but I wanted the dates stored as date variables so I use the date variables ...
1
vote
0answers
16 views
Replicate EAV data model as Conventional data model and use Conventional model for querying in SQL Server
We have an EAV database model built on SQL Server 2008. Knew about the performance problems with EAV before choosing EAV (benefits from EAV outweighed performance problems).
To reduce performance ...
0
votes
2answers
41 views
SSIS - how to make a connection string for your database server?
How do i make a connection string for my database server ? I want to know this so that i can save connection strings in a table and then use them later. Note - All my database servers don't need ...
0
votes
2answers
42 views
For each loop in SSIS - Need to understand ServerName and ConnectionString
I am trying to use a for loop to connect to different servers and then do some job for each server. In the "expressions" of the connection manager for my loop, i see ServerName and ConnectionString.
...
1
vote
2answers
47 views
SSIS ForEach loop - change connection inside a for loop
Task - There are 7 SQL servers, each of which have the same database. Consider a table Table_1 of the database. I want to take data from Table_1 of all the 7 servers and put it into Table_1 of Main ...
0
votes
0answers
46 views
General concept of mule ESB/Data integration
I'm wondering about the general concept about Mule and ESB:
I've got an online store and a CRM.
Every time someone orders something, I'd like to add this data into the CRM to the customers.
Every ...
0
votes
0answers
23 views
Data remapping/transforming “-E T -L” for python
I am looking for some python packages that could help me remap various data structures to an unified data structure (either object or dict).
Think of it as ETL without the "Extract" and "Load" cruft.
...
0
votes
0answers
8 views
Converting .ETL to usable text
I am using netsh to get packet captures using the "trace" option. These are written to a .etl file. I can read the .etl in NetMon, but I have a ton of these from different systems on the network and ...
0
votes
3answers
75 views
SSIS - ETL - Transfer tables/databases from many servers?
I have 6-7 identical databases (almost). I want to copy the data from some of the tables of EACH of these servers into the corresponding table of ONE server. That is, multiple sources and one ...
2
votes
2answers
61 views
Informatica writes rejected rows into a bad file, how to avoid that?
I have developed an Informatica PowerDesigner 9.1 ETL Job which uses lookup and an update transform to detect if the target table has the the incoming rows from the source or not. I have set for the ...
0
votes
1answer
37 views
Loading multiple CSV files into MySQL [closed]
I am working on a metrics project for my team. I have to load several different reports into a central repository and then create tables and reports off of this data.
The data sources are:
CSV ...
2
votes
1answer
52 views
RDB to JSON in Kettle?
I'm currently trying to get a handle on how Kettle 4.4 handles data transformations by trying to port something I'm currently doing via Python to a Kettle job.
I have a relational database with four ...
1
vote
2answers
26 views
How do I reassign Activity records to a different Regarding record in another entity in CRM 2011?
A client wants all Activity records assigned to records in a custom entity reassigned to the matching records in a different entity.
Basically, they have an old custom entity with Activities of ...
1
vote
0answers
37 views
Which framework to write an event-driven ETL application? [closed]
I wrote a prototype for an ETL application. It consists of an admin interface which defines tasks and groups them in batches, which are pushed to a stack stored in a MySQL database. A CLI application, ...
1
vote
2answers
62 views
Process an input file having multiple name value pairs in a line
I am writing kettle transformation.
My input file looks like following
sessionId=40936a7c-8af9|txId=40936a7d-8af9-11e|field3=val3|field4=val4|field5=myapp|field6=03/12/13 15:13:34|
Now, how do i ...
0
votes
0answers
42 views
how to parse IMAP emails using kettle in Java EE web application [closed]
I am able to read IMAP emails from gmail in my Java EE web application and now got big task to parse those emails using pentaho kettle .
I am very new to kettle ETL tool. Please can anyone tell me ...
0
votes
1answer
46 views
XML CHild node iteration in Pentaho
I have an XML file which has data in format:
<LineHeader>
<LineItem LineNumber="1">
<Product SKU="99991L" DespatchQuantity="70">
<Item ...
1
vote
0answers
40 views
ETL:parallel lookup in and insert in scala
For our ETL, the fact data don't have item_key, but have item_number. During the loading, if we can find the item_key for the item_number, then just use it,if can NOT find, then auto create an ...
1
vote
1answer
58 views
Interface with Sybase dump
We have a legacy system that was retired several years ago, that consisted of a simple Java application that used a Sybase instance (ASE 15) as its data store. We have now moved on to a new app using ...
0
votes
1answer
43 views
Need help to perform an ETL task with SSIS
I want to connect to a server using its IP address. Then, I want to execute a .sql file kept on that servers drive. I also want to store the results of this sql in a text file on the server itself. ...
0
votes
1answer
54 views
How to use janino script in Scriptella etl?
I have a Scriptella etl file where I parse a csv file and also use a sample janino script. I always get an exception of driver not found for scriptella, although i have it in libs folder.
etl.xml
...
4
votes
1answer
88 views
Point-in-time snapshots in data warehouse
I am attempting to re-create the status of a customer at an exact point in time. For instance, each customer has many attributes that can change at any time (e.g., risk-score, billings-to-date, ...
3
votes
1answer
68 views
Performance of executing late bound method call vs. switch/case method selection
While I've tagged this question with SSIS, it is not necessarily core to my question; So please keep reading if you're familiar with .NET reflection and code performance issues generally as you may be ...
0
votes
1answer
35 views
Informatica error 1417 :: Task not yet registered with this service process
I am getting following error while running a workflow in informatica.
Session task instance [worklet.session] : [TM_6775 The master DTM process was unable to connect to the master service process ...
0
votes
0answers
21 views
How to copy a file from network drive using pentaho
I have Accessed the FTP path by giving the credentials like below
In the case of Common folders i accessed like this.
This works fine when my windows pc stores the network login passwords. I ...
0
votes
1answer
95 views
How do you solve your “Pre-Etl” Source to target mapping problems? [closed]
Using spreadsheets is definitively non-authoritative: source mappings change as you design and test your ETL jobs. A spreadsheet that once functioned as the single or authoritative catalog of all ...
1
vote
1answer
33 views
What does the distribute tag do in a Pentaho Kettle ETL step?
What is the difference between <distribute>Y</distribute> and <distribute>N</distribute>? In the Spoon user interface, how does this value change?
<step>
...
0
votes
1answer
61 views
How can my custom TOS component add columns to output based on input schema/metadata?
I'm using Talend Open Studio for Data Integration and I would like to create a custom component that will output the input data as well as some extra columns that will be derived from the input ...
0
votes
0answers
46 views
AdventureWorks2012 database missing “DimTime” table
I am doing the "Creating Simple ETL Package" from microsoft technet tutorial. it referes to "DimTime" table in the database which is not available. I am aware that in the 2008 version, "DimTime" was ...
1
vote
1answer
98 views
Not able to run spoon.bat or any other batch file in Pentaho Data Integration (Kettle)
Tried pdi-ce-4.1.0-stable and pdi-ce-4.2.0-stable
My Machine - Windows 7 64 bit
When I run Spoon.bat cmd line window appears and disappears and then nothing happens.
When I tried to run it from ...
1
vote
0answers
73 views
Talend internal variables
I am doing a data migration project in Talend and for one of the tasks i need to process a big table with many columns and map the (old) data to a different value for the new model.
I have a unique ...
0
votes
0answers
113 views
Issue with a mapping variable in Informatica
We have an incremental Informatica job where around 30 sessions runs in a workflow. We are using a mapping variable in all of them as we want to pick records from last run of the Informatica. This ...
0
votes
1answer
204 views
How to create a single star schema using SSIS for two different domains [closed]
I have two domains Hospital and Retail for which i need to create an ETL package. These two databases do not share any common information/dimension except for cuatomer/patient details.I would like to ...
1
vote
0answers
34 views
SQL Server Migration Assistant for Access and password protected source [closed]
Does anyone know if it is possible to have the SQL Server Migration Assistant for Access read from a password protected Access database? The wizard offers no option to provide a password. I tried to ...
0
votes
0answers
82 views
SSIS couldn't access datafile on remote server
We have a simple SSIS package that imports a flat file into a table. The only problem is that the flat file resides on a network share, now the only time i have a problem is when I try to execute it ...
0
votes
1answer
102 views
Automate scheduled extraction of Bloomberg data from text files, load into database, and access data from within Excel (similar to BB desktop API)
At present we access Bloomberg data using their Excel Add-in. This has allowed us to embed BB functions (e.g. BDP, BDH) directly into our Excel/VBA-based analyses, and import/refresh data as ...
1
vote
1answer
55 views
Scriptella: How to handle the error while fetching data from XML through Xpath
i have one query regarding data fetching from XML xpath.
<query connection-id="in">
CommunicationCenter/Response/MenuData/Menu/Noun
<!--something I have to do inside script using the ...
0
votes
0answers
107 views
Extracting data from SharePoint lists to SQL Server 2012 using SQL Server Data Tool
we are trying to build an ETL process to extract several lists from SharePoint 2010 into SQL server 2012 using the new replacement of SSIS, SQL Server Data Tool.
We have used following plugin
...
1
vote
4answers
90 views
alter table then update in single statement
I have a requirement where I need to Alter (Add 2 columns) and then update the same table.
Here is the query I tried:
ALTER TABLE A
ADD c1 int,c2 varchar(10)
UPDATE A set c1 = 23, c2 = 'ZZXX'
I ...
0
votes
0answers
60 views
What's the connection between BI and ETL? [closed]
I understand Business Intelligence (BI)'s relationship to business analytics and warehousing: businesses want to be able to query their warehouses and extract complex and meaninigful data.
What I ...
2
votes
2answers
271 views
SSIS : delete rows after an update or insert
Here is the following situation:
I have a table of StudentsA which needs to be synchronized with another table, on a different server, StudentsB. It's a one-way sync from A to B.
Since the table ...
1
vote
1answer
33 views
Reading flat file with uneven no. of columns
i have a csv file like this
**0, xyz, 20130301121212
1, 6997, 01234
2, 012345, 5678999, Y, 11, 20130301
2, 012345, 5678988, Y, 11, 20130301
1, 6647, 01234
2, 012345, 5678999, Y, 11, 20130301
2, ...
0
votes
1answer
89 views
Django - How to conect Pentaho Kettle ETL with wep app
I have a Django application where users can upload big dataset in PostgreSQL db. I would like to use an ETL tool like Pentaho Kettle to do the upload job. Later, I would like to use Kettle for data ...
0
votes
2answers
77 views
need to compare data in two excel files
I need to compare two excel files. One is extracted from database and saved as CSV. Other file is cumulative report containing all records for that day. I need to check if all the data in the ...
2
votes
1answer
78 views
What the decode function do in the update flag port in informatica?
I'm new to Informatica and like to ask a question regarding infa ports. I found an example which show how to create an update flag in expression transform for updating data. The code in v_UPDATE_FLAG ...
1
vote
2answers
152 views
Scriptella: How to fetch data dynamicallly from a clob object and then insert it into database?
I am newbie in using Scriptella.
My requirement is something like this :
1) Firstly, I have a few very large xml files, from which I have to insert data into database.
Hence, I decided to insert xml ...






