Please be aware that the content in SAP SQL Anywhere Forum will be migrated to the SAP Community in June and this forum will be retired.

Preface: This was originally a sub-comment from that question: "DBREMOTE Messages 36^3 not enough. I think it's helful to ask it as a separate question... // Volker

I found out that the reason of this big size of messages is because of something like an endless loop, in which our application does not match the principle of DBREMOTE. So the situation is as follows:

We have one Cons. DB replicating against 100 Remotes, and each Remote updates the value of a specific row in one table very frequently, and this table in turns replicates in both directions:

The statements are something like:

update TABLE1 set Col1 = 1;

update TABLE1 set Col1 = 2;

.

.

.

update TABLE1 set Col1 = 1000;

This block means for DBREMOTE to replicate the 1000 Update statements from Remote1 to Cons, and the server in turn will apply these updates by him and then replicate the same Updates 99 times for the remaining 99 Remotes.

The question is: is there any way to tell the DBREMOTE to ignore the between transactions and consider only the last one?

I know that with SYNCHRONIZE SUBSCRIPTION I can achieve what I want for one time, but are there maybe better ideas?

asked 01 May '19, 05:57

Baron's gravatar image

Baron
2.1k137150177
accept rate: 48%

converted 02 May '19, 09:29

Volker%20Barth's gravatar image

Volker Barth
40.2k361550822

Aaaargh, why can I convert a comment to a separate question and then all its nested comments are gone?

(Sorry, Sarkis, I fear I have messed things up, and an admin like @Graeme or @Mark Culp need to interfere...)

(02 May '19, 09:35) Volker Barth
Replies hidden

Even more sorry, apparently I had forgot about those older issues and Breck's advice there...:(

Still I hope Graeme can fix that up.

(02 May '19, 09:43) Volker Barth

And thanks to @Graeme, he has just corrected that. :)

A BIG THANKS!

(03 May '19, 08:03) Volker Barth

How to fool SQL Remote: (1) Don't include the heavily-updated table1.column in the publication. Create a "shadow" table2.column that looks just like table1.column. Include table2.column in the publication. Just before synchronization occurs, update table2.column with the latest value in table1.column so that update will appear as a single operation in the upload... possibly do this in a hook procedure.

Caveat emptor: That technique has not been tested. Also, a lot more work must be done to solve (2) how the uploaded update is handled on the consolidated, (3) how downloaded updates are to be created on the consolidated and (4) how downloaded updates are to be handled on the remote.

FWIW far more complex trickery has been done with MobiLink, but the upload update scripting feature makes it much easier than SQL Remote.

Playing tricks with SQL Remote can be very difficult to code, especially if performance problems pop up.

permanent link

answered 02 May '19, 09:44

Breck%20Carter's gravatar image

Breck Carter
32.5k5417261050
accept rate: 20%

converted 08 May '19, 06:57

Volker%20Barth's gravatar image

Volker Barth
40.2k361550822

Comment Text Removed

In this case I have to replicate table2 in remote against table2 in cons, and I should have also a trigger on cons. so that I transfer the changes from table2 back to table1 (within cons.), then I will have an indirectly synchronized table1.

What about if I need resolve conflict triggers (inventory), is it enough if I apply the trigger only on the directly replicated table2?

I think it is enough, but just to make sure!!

(03 May '19, 07:16) Baron

Since table1.column is not replicated any more, table2 is the only candidate for conflict resolution. What you will have to do is propagate the result of the conflict resolution to table1.column. HTH

(03 May '19, 07:42) Volker DB-TecKy

SQL Remote does replicate each operation on a published table as is, so AFAIK there is no way to "merge" those updates into one. That is a fundamental difference to MobiLink which does this "merging" by default.

Two approaches:

  1. Operations on published tables done within a SQL Remote hook procedure are not replicated at all.

  2. Move the updates to an unpublished shadow table and just apply the final update to the real table.

If those approaches could work is out of my knowledge because I don't know why your app does this sequence of updates on the same row...

permanent link

answered 01 May '19, 07:33

Volker%20Barth's gravatar image

Volker Barth
40.2k361550822
accept rate: 34%

converted 08 May '19, 06:56

What about if I can manage to (delete the row and re-insert it) before starting DBREMOTE, in this case I think DBREMOTE will merge all (1000update + 1delete + 1insert) into one (1delete + 1*insert). Am I correct?

(01 May '19, 07:59) Baron
Replies hidden

No, any operation into a published table will be replicated by SQL Remote. If you insert a million rows and delete them afterwards, both operations will still be replicated...

(01 May '19, 09:21) Volker Barth
1

I have learnt to think: If an operation has been put into the transaction log, SQL Remote will replicate it, no matter whether the according row is still in the database or not. In that respect SQL Remote is rather, hm, unsmart...

(01 May '19, 09:24) Volker Barth
2

SQL Remote is different. If you update a one-byte column in a table with a 100M blob, SQL Remote will replicate the one-byte update but not the blob... whereas MobiLink will synchronized the entire row including the unchanged blob... so who's smart now? :)

(01 May '19, 09:41) Breck Carter
1

It's not so much unsmart as by design. SQL Remote was designed to replicate every operation in the database. If it goes in the transaction log, it will be sent.

If that's not what you want, you should use MobiLink which synchronizes only the changes since the last synchronization.

(01 May '19, 10:11) Reg Domaratzki
2

The smartest people get the best of both worlds and use MobiLink but separate their large blobs into another table with a 1-1 relationship, so that the blob is only synchronized if it changes.

(01 May '19, 10:14) Reg Domaratzki

Yes, that's why I used the term operations, not "modified rows" or the like..

(01 May '19, 11:37) Volker Barth

what if the primary key of the table includes 100M blob? then DBREMOTE must use this 100M in the message, and this is actually our case:

update TABLE1 set Col1 = 1 where VERYLONGCOLUMNNAME1 = verylongdoublevalue and VERYLONGCOLUMNNAME2 = verylongvarchar100value ....

(01 May '19, 13:33) Baron

I remember that I read once some smart property of DBREMOTE, so if several statements are applied on a specific row and then the last statement is delete statement, then DBREMOTE decides to ignore all the transient statements as long as they ended up with DELETE.

Maybe I am confusing!!

(01 May '19, 13:38) Baron

In our case (and I think also by most other applications) the UPDATE Statements are originated from the remotes, and even in case of Mobilink the DBMLSYNC uses Transaction log files, so I think even with mobilink all the between statements will be sent to Cons.

Does your explanation applies only the cons (MLSRV10/17) or applies also the DBMLSYNC?

(01 May '19, 13:49) Baron
1

It's the MobiLink client we refer to. It "merges" row modifications, i.e. it compares the state of a row after the last download with the state when building the upload. If a row has been updated several times within that time span, only the last state is part of the upload, including all columns. If a row has been inserted and afterwards deleted, it is not part of the upload at all.

The consolidated's behaviour is based on scripts, so there is no general rule there.

(01 May '19, 14:46) Volker Barth
1

Oops, that is a rather uncommon design decision... Is there a particular reason for that?

(01 May '19, 14:48) Volker Barth
2

I guess that relates to MobiLink, see my other current comment..

(01 May '19, 14:50) Volker Barth

Yes, thank you

(02 May '19, 09:00) Baron

not all the tables are optimally designed!!

(02 May '19, 09:01) Baron
showing 1 of 15 show all flat view
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×103
×78

question asked: 01 May '19, 05:57

question was seen: 1,244 times

last updated: 03 May '19, 08:03