I am discovering Pentaho DI and i am stuck with this problem :

I want to insert data from a csv file to a custom DB, which does not support the "insert table" step. So i would like to use the sql script step, with one request :

INSERT INTO myTable 
SELECT * FROM myInput

And my transformation would like this :

transformation

I don't know how to get all my data from the csv to be injected in the "myInput" field.

Could someone help me ?

Thanks a lot :)

link|improve this question

70% accept rate
Can you provide some sample data? Also is it possible to know what the output database type is so that it can be tested? – rwilliams Nov 17 '10 at 23:34
feedback

1 Answer

up vote 2 down vote accepted

When you first edit the SQL Script step, click 'Get fields' button. This is going to load the parameters(fields from your csv) into box on the bottom left corner. Delete the parameters(fields) you don't want to insert.

In your sql script write your query something like this where the question marks are your parameters in order.

insert into my_table (field1,field2,field3...) values ('?','?','?'...);

Mark the checkboxes execute for each row and execute as a single statement. That's really about it. Let me know if you have any more questions and if you provide sample data I'll make you a sample ktr file to look at.

link|improve this answer
aka r-dub: +1 Nice clear answer. – blunders Nov 30 '10 at 3:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.