I am trying to write data from a .csv file to my postgreSQL database. The connection is fine, but when I run my job i get the following error:

Exception in component tPostgresqlOutput_1
org.postgresql.util.PSQLException: ERROR: zero-length delimited identifier at or near """"
    at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:1592)
    at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:1327)
    at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:192)
    at org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:451)
    at org.postgresql.jdbc2.AbstractJdbc2Statement.executeWithFlags(AbstractJdbc2Statement.java:336)
    at org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:328)
    at talend_test.exporttoexcel_0_1.exportToExcel.tFileInputDelimited_1Process(exportToExcel.java:568)
    at talend_test.exporttoexcel_0_1.exportToExcel.runJobInTOS(exportToExcel.java:1015)
    at talend_test.exporttoexcel_0_1.exportToExcel.main(exportToExcel.java:886)

My job is very simple: tFileInputDelimiter -> PostgreSQL_Output

I think that the error means that the double quotes should be single quotes ("" -> ''), but how can i edit this in Talend?

Or is it another reason? Can anyone help me on this one?

Thanks!

link|improve this question

1  
Please show us the SQL statement that is being executed – a_horse_with_no_name Sep 30 '11 at 13:32
It rather looks like an empty column name, or a null value in a column to me. Would need to see the entire job, including the schemas for input and output. – drmirror Sep 30 '11 at 15:40
I'm using the customer.csv file from the Talend tutorial. This I'm inserting into a new database with no tables or anything, and chose the option to create a new table if it doesn't exist. – Tjekkles Oct 3 '11 at 6:39
feedback

1 Answer

up vote 3 down vote accepted

may be if u use customer.csv from repository then u have to change some property of customer file from metadata->file delimited->customer. u get edit existing file window in that at step 3 (chk out step number at top of window). in that if u have ur file extension .csv then in Escape char settings u have check on csv option n escape char is "\"" and text enclosure is also "\"" and make some arrangement in file settings that encoding is utf-8. n refresh your schema. your file looks like table format. then u can run jobs. its work.

and if your file is not in repository then click on component of ur file n do all above arrangement in basic settings.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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