Multi row insert with On Duplicate Update (Microsoft Sql Server)

1,285 views
Skip to first unread message

benjami...@gmail.com

unread,
Jul 5, 2016, 4:43:41 PM7/5/16
to jOOQ User Group
Hello together,

we are currently evaluating Jooq in a prototype context in order
to find out if we can use it later in production. So far it seems 
pretty nice, with an almost perfect documentation.

We need to support different PostgreSql and Sql Server types. 

One problem we could not yet solve, is the following:

We want to insert a batch of 1000 entries into a table. If
some entries already exist, we want to update some of the fields instead.

We used:

InsertValuesStep insertStep = context.insertInto(Table, SomeFields);
List<UpdateTableRecord> records = SomeInitialzedRecords();

records
.stream().foreach(record -> {
insertStep
.values(record.getField1(), record.getField2()...);
insertStep
.onDuplicateKeyUpdate().set(Field1, record.getField1());
}

insertStep
.execute();

This works for PostgresSql as expected, but in sql server it does insert only one row per execution instead of 1000.
We also tried:

context.batchStore(records).execute();

But this throws the DuplicateKey Exception instead of updating the row entry and it seems somewhat slower than the other option under PostgreSql.

Is this the right way to do what we like to achieve or is there something better ? 

Thanks in advance - Benjamin

Lukas Eder

unread,
Jul 6, 2016, 9:44:15 AM7/6/16
to jooq...@googlegroups.com
Hi Benjamin,

Thank you very much for your enquiry and for your interest in jOOQ. I will comment directly inline

2016-07-05 16:25 GMT+02:00 <benjami...@gmail.com>:
Hello together,

we are currently evaluating Jooq in a prototype context in order
to find out if we can use it later in production. So far it seems 
pretty nice, with an almost perfect documentation.

We need to support different PostgreSql and Sql Server types. 

One problem we could not yet solve, is the following:

We want to insert a batch of 1000 entries into a table. If
some entries already exist, we want to update some of the fields instead.

We used:

InsertValuesStep insertStep = context.insertInto(Table, SomeFields);
List<UpdateTableRecord> records = SomeInitialzedRecords();

records
.stream().foreach(record -> {
insertStep
.values(record.getField1(), record.getField2()...);
insertStep
.onDuplicateKeyUpdate().set(Field1, record.getField1());
}

insertStep
.execute();

This works for PostgresSql as expected, but in sql server it does insert only one row per execution instead of 1000.

Hmm, this currently works because the jOOQ API is not (yet) immutable, so you can keep calling methods on your insertStep to modify its internal model, even if there isn't really any database that supports adding several VALUES() clauses and ON DUPLICATE KEY UPDATE clauses. I would strongly recommend not following such a pattern. I'm actually surprised that this would work for PostgreSQL.
 
We also tried:

context.batchStore(records).execute();

But this throws the DuplicateKey Exception instead of updating the row entry and it seems somewhat slower than the other option under PostgreSql.

With this approach, the decision whether an INSERT or an UPDATE is executed is made in the client based on how you created the individual records. If you never fetched any record from the database, this will only produce INSERT statements - just like when you call record.store();

The reason why it might be slower is because each record currently generates an individual SQL string.

Is this the right way to do what we like to achieve or is there something better ? 

I think you might prefer the Loader API, which works with CSV data:

... or also with records, as in your case:

The Loader API lets you fine tune the transaction commit size, batch size and bulk size, as you might want to use different sizes for each database.

Let me know if this helps, and if you have any additional questions about the loader API.

Best Regards,
Lukas

Benjamin Lang

unread,
Jul 12, 2016, 8:39:00 AM7/12/16
to jOOQ User Group
Thanks Lukas,

we changed the implementation to:

   getContext()
         
.loadInto(table)
         
.batchAll()
         
.onDuplicateKeyUpdate()
         
.loadRecords(records)
         
.fields(fields)
         
.execute();


It seems to work so far for PostgresSql and for SqlServer.

Best Regards
-- Benjamin

Lukas Eder

unread,
Jul 12, 2016, 8:47:41 AM7/12/16
to jooq...@googlegroups.com
Great to hear, Benjamin!
Thanks for the feedback

--
You received this message because you are subscribed to the Google Groups "jOOQ User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jooq-user+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Benjamin Lang

unread,
Aug 11, 2016, 6:17:13 AM8/11/16
to jOOQ User Group
We had another problem with sql server and prepared statements, where it took forever to execute a statement. 

Looking at the example from the docs:

create.select().from(BOOK).where(BOOK.ID.equal(5)).and(BOOK.TITLE.equal("Animal Farm")).fetch();

Is there a way to tell jooq, that for example BOOK.ID is not a prepared statement param ? The opposite of val() ...

Because of this problem, we switched completely to STATIC_STATEMENTS and everything works fast (one statement down from several minutes to 3 sec).
Is there a benefit with prepared statements anyway, if you send the same basically static sql query (without any params) over and over again ... ?

But then we have a problem with the Loader, the source code:

 getContext()
         
.loadInto(table)
         
.batchAll()
         
.onDuplicateKeyUpdate()
         
.loadRecords(records)
         
.fields(fields)
         
.execute();

Doesn't work anymore, because it doesn't fill the queries correctly with the records anymore. 
If I remove the onDuplicateKeyUpdate() it works for inserts as expected.

Am I doing it wrong or is there maybe an error in connection with STATIC - Loader - OnDuplicatedKey - SQL Server ?

Best Regards
-- Benjamin

Lukas Eder

unread,
Aug 15, 2016, 5:03:56 PM8/15/16
to jooq...@googlegroups.com
Hi Benjamin,

I'm sorry for the delay. Yes, there is a way to tell jOOQ that. Field.equal(T) is just convenience for Field.equal(val(T)), but you can also pass an "inline" bind variable by using DSL.inline(T):

This helps having fine-grained control over which bind variable gets to be inlined and which variable gets to be passed as a "?". The other option, as you've already discovered, is to force all bind variables to be inlined via STATIC_STATEMENTS. That flag also executes a java.sql.Statement, rather than a java.sql.PreparedStatement

Both options are documented here, for the reference:

I'm curious about what takes so long when you use bind variables. Have you profiled your SQL usage? How many bind variables do you have, and how big are they? Do your actual queries look very different from the example that you've posted?

Thanks for the loader hint. I'll investigate that. Quite possibly, there's a bug that prevents using that combination of flags. Note, though, you don't have to use STATIC_STATEMENTS for everything. You can use it only for those few queries that run slowly.

Hope this helps,
Lukas

--
You received this message because you are subscribed to the Google Groups "jOOQ User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jooq-user+unsubscribe@googlegroups.com.

vika9...@gmail.com

unread,
Mar 2, 2018, 2:10:42 PM3/2/18
to jOOQ User Group
Dear Lucas!

I've faced such issue with the loader api: I have a class that contains only id values. This class is actually a composite primary key itself. I want to make batch insert for this class using loader api. But if I use onDuplicateKeyUpdate - I receive an error like there is no fields to update(truth, there is only part of primary key). If I use onDuplicateKeyIgnore - I receive an error Cannot apply batch loading with onDuplicateKeyIgnore flag. If I use nothing - sometimes I face duplicate key violation exception. Can you advice me any approach to deal with this case? I will really appreciate any help. 

The point is that I want to make insertInto(TABLE).set(record).onDuplicateKeyUpdate().set(record).execute() in batch

Thanks in advance,
   Victoria

вторник, 16 августа 2016 г., 0:03:56 UTC+3 пользователь Lukas Eder написал:
Hope this helps,
Lukas

To unsubscribe from this group and stop receiving emails from it, send an email to jooq-user+...@googlegroups.com.

Lukas Eder

unread,
Mar 5, 2018, 4:59:39 AM3/5/18
to jooq...@googlegroups.com
Hi Victoria,

Thank you very much for your message.

I'm not sure yet if this is really related to the original discussion - if in doubt, you can always start a new discussion on the user group.

In order to be able to help you, I will need quite a bit of additional information, ideally a minimal, complete, verifiable example. See this website here for some details:

You've mentioned the loader API and batch, and that you've run into some errors. But how can I reproduce those errors? What does your class / composite key look like? What does your schema look like? What does your jOOQ code look like?

The more information you provide, the easier it will be to help.

Thanks,
Lukas

To unsubscribe from this group and stop receiving emails from it, send an email to jooq-user+unsubscribe@googlegroups.com.

vika9...@gmail.com

unread,
Mar 5, 2018, 7:34:50 AM3/5/18
to jOOQ User Group
Thank you for the reply, Lukas!

I've posted a question on StackOverflow with concrete examples and explanation:

Thanks in advance,
Victoria

понедельник, 5 марта 2018 г., 12:59:39 UTC+3 пользователь Lukas Eder написал:

Lukas Eder

unread,
Mar 7, 2018, 4:49:51 AM3/7/18
to jooq...@googlegroups.com
Thanks a lot, Victoria.

I'll investigate and answer directly on the stack overflow question.

Cheers,
Lukas

To unsubscribe from this group and stop receiving emails from it, send an email to jooq-user+unsubscribe@googlegroups.com.
Reply all
Reply to author
Forward
0 new messages