Re: Updating multiple database tables

2020-02-04 Thread Dylan Adams
Jason, I ended up using PostgreSQL’s writable CTEs. The target tables had database-generated SERIAL primary keys, so it seemed like the easiest way to keep the changes atomic. Regards, Dylan On Thu, Jan 30, 2020 at 14:15 Jason Sommer wrote: > Hi Dylan, > > I have a similar use case of saving u

Re: Updating multiple database tables

2020-01-30 Thread Jason Sommer
Hi Dylan, I have a similar use case of saving updates to multiple RDBMS tables. While I'm leaning towards using multiple JDBCOutputFormats to solve the issue, I'm curious about which approach you ended up using. Thanks, Jason On 2018/11/28 21:09:08, Dylan Adams wrote: > Hello,> > > I was hoping