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.

I have the following installation:

  • 1X Cons. running SQL10

  • 50X remotes running SQL17.

SQL Remote is running on both sides (bidirectional replication).

Now we are going to upgrade the Cons. to SQL17, but we want to leave the remotes intact, and also we should avoid down times on the remotes.

My plan is as follows:

1- Start DBRemote -s (only send) on Cons10 in order to send its last messages before converting to SQL17 (till the current offset).

2- Run DBLOG against Cons10 and note the start and relative offsets.

3- Shutdown the the cons. unload it, and load it to a new SQL17 DB.

4- Run DBLOG against the new Cons17 (set the start offset to the noted value from step2).

5- Delete the Transaction log files of the Cons17 and start it as a productive Cons.

Theorically everything should work fine, since the SYSREMOTEUSERS is token 1:1 from Cons10, and all the transctions resulted during the convertion process (load into empty SQL17 DB) will be ignored.

I want to ask the experts here, do you see any risk in this plan? Knowing that during all the above steps all the Remotes will continue to run in productive mode and also the DBRemote will periodically run against them (but DBRemote on Cons will start only after step5).

asked 06 Jun '20, 17:42

Baron's gravatar image

Baron
2.1k135149177
accept rate: 48%

edited 07 Jun '20, 04:46

Actually the steps are the same as explained in this manual

Except the step 9, because here I can't let my new Cons17 use the old transaction log files of Cons10, and so that I insist on Step1 above (let Cons10 send all its messages before converting to 17)

(06 Jun '20, 17:45) Baron
Replies hidden

Where did you get this step from? "1- Start DBRemote -s (only send) on Cons10 in order to send its last messages before converting to SQL17 (till the current offset)."

You did not get it from the steps "explained in this manual".

Please go back and read those instructions again. They do not say "run dbremote", but they DO SAY "place this file in the dbremote offline logs directory".

Please note that the server does NOT "use old transaction log files" (except when running disaster recovery), but dbremote DOES USE old logs.

(07 Jun '20, 15:50) Breck Carter

Please take Volker's advice to run tests.

Without testing, you chances for success in production are 1 in 100.

After one successful test, your chances for success in production increase greatly: 1 in 3.

(07 Jun '20, 15:59) Breck Carter
Replies hidden

I need some clarifications regarding STEP8 in this manual:

  1. 0000698242 corresponds the end offset as read in step3, correct?
  2. The option -x should always be assigned the value of 0, correct?
  3. Is the option -ft mandatory? Since I am migrating from SQL10 to SQL17, and since DBLOG.EXE in SQL10 didnt support -ft option, then I don't know which value to assign this option.

(08 Jun '20, 04:20) Baron

Well, if you really want to use dbunload -ar (as suggested by me and stated by you in another comment), then there are lesser steps to follow, see the according doc page. Basically, -ar means you don't have to take care of log offsets yourself, and there is no need to check those values and to re-apply them via DBLOG as the dbunload process does that automatically.

FWIW, I can't tell on the DBLOG -ft option because that is new in v17, and the DBTRAN output from older versions (at least when used with NUL at output) does not display a timeline value.

Update: I raised the -ft question as a separate question because I do need that information as well:)

(08 Jun '20, 04:52) Volker Barth

Yes, I was intending to use -ar, but in my case is not possible.

For our migration case, we take over only the data from SQL10 in SQL17 (without taking over the structure), (i.e. DBUNLOAD -d), and in this case -ar is not applicable!!

For this reason I should take care of the offsets (and the configuration of SQL Remote like SYSREMOTEUSERS, SYSPUBLICATION....) manually!

I'll try once with ignoring the -ft option and write the results here.

(08 Jun '20, 05:18) Baron

without taking over the structure

Hm, then I would certainly recommend to do even more testing...

(08 Jun '20, 05:29) Volker Barth
1

To give yourself the best chance of success at this, I would HIGHLY recommend doing the upgrade in two stages :

Stage 1 : Upgrade from v10 to v17, maintaining the same database structure in the consolidated. To be paranoid, you could wait until all your remote databases have successfully exchanged messages with the new v17 consolidated database to ensure the version change was successful.

Stage 2 : Make your schema changes.

We test upgrades of consolidated database from v10 to v17. We test making schema changes using passthrough statements in a SQL Remote environment. We do NOT test upgrading the consolidated database to v17 and doing schema changes at the same time.

IMHO, you are needlessly complicating the process by trying to rebuild and make schema changes at the same time.

Reg

(08 Jun '20, 09:02) Reg Domaratzki
showing 2 of 8 show all flat view

I do not think your last remark is true, dbremote certainly must be able to cope with (offline) logs from older versions, because it must allow a resend of older messages if they are requested. See, even if you would sent all necessary operations from the current log before shutting down the v10 database, there is no guarantee that all remotes wilk receive and apply these messages without a need for a resend.

That being said, I would recommend two points:

  1. Have you considered using dbunload -ar, so you do not need to adjust log offsets manually? (Note, this requires that you do not need to make changes to page sizes or the like.)

  2. I would always use a test environment with copies of the cons and some remotes to check the update steps and to make sure everything will work as expected. Even when your steps seem reasonable, some detail may show up, and you then don't want to need to do "re-extract all remotes". I'm absolutely sure Reg as the true replication expert will agree on that...

permanent link

answered 07 Jun '20, 10:31

Volker%20Barth's gravatar image

Volker Barth
40.2k361549822
accept rate: 34%

converted 07 Jun '20, 14:32

Regarding my last remark, I think my expression is true According to this test!! even if the database version is the same (each database can recognize anyhow whether a transaction log file belongs him or not), and in my case I will have a different Cons DB and also a different version!!

Yes I know that there is no guarantee, and I am almost sure that some of those 50 remotes will request a resend of the same messages, but, I am considering to make a copy of Cons10 sent messages, so that I can refeed them again to each remote requesting a resend!

Actually I dont feel safe in this phase, and not sure if copying the messages and refeeding them will solve the problem!!!

Note: Of course I can't read the contents of each messages to figure out which remote requests a resend, and I will try to avoid arriving this resend request to the Cons17, and I will depend on reading the values of confirm_sent to figure out which remote has got and applied all the changes of Cons till the shutdown of 10.

  1. Yes I will use dbunload -ar.

  2. Yes I prepared a test environment, but again, succeeding the test doesn't guarantee the success on the productive.

(07 Jun '20, 12:30) Baron
Replies hidden
1

Well, there's a misunderstanding here. The current aka active transaction log must fit to the database, and the database version used to create the database file(s) and the log file must match. Also, the backup log files needed for recovery must fit the database file version. That is what your test has shown.

But here the v10 log will only act as an offline log for replication purposes, and offline logs are allowed to be of older versions. (Otherwise, one would simply not be able to update a SQL Remote setup.) (Just to add: When updating from pv9 or older to v10 and above, a particular library was necessary so the "new" dbremote could still read the old log file format.)


As to messages needed in case of a re-send: These must be re-created by dbremote, AFAIK it will not do to simply copy the original message files because the new contents will be different. And no worry: Resending messages is part of SQL Remote's guaranteed message delivery system, so you don't have to care for that or check message contents, you only have to make sure offline logs are available as long as they might be needed.

(07 Jun '20, 13:12) Volker Barth

OK, so you mean that DBRemote(17) can make use of the offline logs from Cons10!!


Yes, here was my doubt, I was afraid that the same copies of the messages could not help, and some resend requests from remotes could make the need that Cons generates new messages.


I will finish my test (test environment) tomorrow and make the results here.

(07 Jun '20, 14:22) Baron
Replies hidden

OK, so you mean that DBRemote(17) can make use of the offline logs from Cons10!!

Well, just to prove on that point:

See this older FAQ on SQL Remote with a v8 to v12 migration and Yufei's answer that for pre-v10 offline logs, SQL Remote needs access to a particular DLL (dboftsp.dll on Windows) whereas for v10 and above offline logs, SQL Remote can do so by default. So v17 SQL Remote can read offline logs from v10 and above.

The docs also explain that detail in the deployment section.

(07 Jun '20, 14:46) Volker Barth

v17 dbremote can read offline transaction logs created by old versions of the database engine, all the way back to v5.0.

(08 Jun '20, 08:53) Reg Domaratzki

Well, it would be quite funny to have production databases that make use of offline logs for v5:) (And one should set message compression accordingly then, methinks...)

(08 Jun '20, 09:09) Volker Barth

I finished one test successfully.

I ran the DBUNLOAD without -ar, since our migration takes over only the data (without the structure) from SQL10 into SQL17 (i.e. DBUNLOAD -d)

In order to take over SQL Remote settings, I did just a dummy migration (i.e. DBUNLOAD -s) on the same SQL10 DB and then copied the section marked as Create SQL Remote definitions from reload.sql.

Of course I maintained the same offset range between SQL10 and SQL17 as described in the manuals using DBLOG.

I am going to do further tests before applying it in productive.

Actually I posted this question because I was not expecting the DBRemote of SQL17 can create messages from transaction logs of a SQL10 DB

Thanks for your help....

(09 Jun '20, 15:27) Baron

I finished one test successfully.

I ran the DBUNLOAD without -ar, since our migration takes over only the data (without the structure) from SQL10 into SQL17 (i.e. DBUNLOAD -d)

In order to take over SQL Remote settings, I did just a dummy migration (i.e. DBUNLOAD -s) on the same SQL10 DB and then copied the section marked as Create SQL Remote definitions from reload.sql.

Of course I maintained the same offset range between SQL10 and SQL17 as described in the manuals using DBLOG.

I am going to do further tests before applying it in productive.

What does my test important, is that the SQL10 was not completely replicated to the remotes, so that DBRemote of SQL17 needed to created old messages (after reading the old transaction logs of SQL10).

Actually I posted this question because I was not expecting the DBRemote of SQL17 can create messages from transaction logs of a SQL10 DB

Thanks for your help....

(09 Jun '20, 15:34) Baron
showing 4 of 8 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:

×78
×52

question asked: 06 Jun '20, 17:42

question was seen: 776 times

last updated: 09 Jun '20, 15:34