Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

how to import files from talend to postgres database

HI all,
I have a csv file which I want to import from the talend into postgresql database. is it possible?
If yes, please tell me the detail steps for this.

Thanks in advance.
Regards,
Manoj
Labels (2)
3 Replies
Anonymous
Not applicable
Author

Hello
It is a simple request, just using to tFileInputDelimited to read the csv file and write the records into postgresql with tPostgresqlOutput component. For example:
tFileInputDelimited--row1--tPostgresqlOutput
Please read the user documentation about their usage.
Best regards
Shong
Anonymous
Not applicable
Author

HI Shong,
Thanks for reply.
I have a csv file which contains the column names from the table of the postgresql database.
e.g. Name, Contacts/Contact Name, Contacts/City, Contacts/Fax etc.
and data like Microsoft, Sam, NewYork, 012545522

But when I create a new job as told by you tFileInputDelimited--row1--tPostgresqlOutput.
I am getting error
ERROR: relation "public.metadata" does not existERROR: current transaction is aborted, commands ignored until end of transaction blockERROR: current transaction is aborted, commands ignored until end of transaction blockERROR: current transaction is aborted, commands ignored until end of transaction block
where I am going wrong?
What is the solution for this?
Ragards,
Manoj
Anonymous
Not applicable
Author

Hi,
I run the job successfully, but not getting the data into database.
I don job as : tFileInputDelimited--row1--tPostgresqlOutput
How to get data in database?