Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]

Support Questions

Find answers, ask questions, and share your expertise
Announcements
Share your experience with Cloudera on G2 and get a $25 Amazon Gift card.
Hi, I'm CLEO! Something exciting is coming to the Community. Stay Tuned!

Can Nifi insert data into uppercase table in postgesql ?

avatar
Explorer

Hi Team,
I create a dataflow try to insert data into uppercase table in postgesql.

But it does not work.

Appreciate any help on this issue, I am new to Nifi.

 

nifi dataflow.png

 

Here are my setting for QueryDatabaseTable and PutDatabaseRecord

 

nifi dataflow querydatabasetable.png

 

nifi dataflow putdatabaserecord.png

 

The error message show

org.apache.nifi.processors.standard.db.TableNotFoundException: Table "ACPMA" not found, ensure the Catalog, Schema, and/or Table Names match those in the database exactly

 

nifi dataflow table is not exist.png

 

Here is a uppercase table ACPMA in postgesql.

 

nifi dataflow db table is exist.png

1 ACCEPTED SOLUTION

avatar
Super Guru

Hi @mandychen ,

Have you tried removing the double quotes  from "ACPMA" in the Table Name property of the PutDatabaseRecord? I dont think you need it there.

 

If that helps please accept solution.

Thanks

 

View solution in original post

2 REPLIES 2

avatar
Super Guru

Hi @mandychen ,

Have you tried removing the double quotes  from "ACPMA" in the Table Name property of the PutDatabaseRecord? I dont think you need it there.

 

If that helps please accept solution.

Thanks

 

avatar
Explorer

I see, it work!

Thanks for your information