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.

Hi. One of our customers is reporting that his maintenance-plan-driven backup will sometimes fail validation. He has the process setup to send him an email when a failure occurs. What causes these failures? Always, subsequent backups are (for a time) fine--report no failures.

asked 06 Nov '12, 15:28

dejstone's gravatar image

dejstone
959405069
accept rate: 0%

Is there any indication about the reason of the backup fail in the email text?

(06 Nov '12, 16:10) nico
Replies hidden

...or in the table that stores the last n runs of each maintenance plan (I don't remember the table name currently, something with "maint_..." I guess)?

(06 Nov '12, 16:22) Volker Barth

Here's one... The maintenance plan has ended because of the following error: Run time SQL error -- Validation of table "schedules" has failed SQLSTATE: 40000 SQLCODE: -300 Here's another... The maintenance plan has ended because of the following error: Run time SQL error -- Validation of table "groups_actual_volume" has failed SQLSTATE: 40000 SQLCODE: -300

(06 Nov '12, 16:37) dejstone

FWIW, the table is called "dbo.maint_plan_report", and the column "report" should contain the full message text, so that should help for later diagnosis.

Besides that, if the server is running a console log (dbsrvX -o), it should contain messages for all validation steps - AFAIK the validation facility always writes its messages there.

(08 Nov '12, 04:21) Volker Barth

Is the database in active use (i.e. running transactions) during the validation? (IIRC, the maintenance plan runs its validation against the active database, not against a copy of the backup.) - If so, confine the following general warning on validation:

Caution

Validating a table or an entire database should be performed while no connections are making changes to the database; otherwise, errors may be reported indicating some form of database corruption even though no corruption actually exists.

Does a further validation of the same database (i.e. not in the next run) give the same errors?

permanent link

answered 06 Nov '12, 16:44

Volker%20Barth's gravatar image

Volker Barth
40.2k361550822
accept rate: 34%

Would the option below be an alternative to avoid the scenario Volker described?

"Disconnect all users (including those connected to Sybase Central) when the maintenance plan runs?"

(07 Nov '12, 14:42) Derli Marcochi
Replies hidden

Yes, that would surely avoid that situation.


FWIW, I have some maintenance plans created with v11.0.1, and I guess that option was not available then. At least the according validation plan does only prevent logins during its run, i.e. only the following option has been set:

"Disallow logins while the maintenance plan is running"

If only this option is set, this would still allow existing connections to make modifications which might lead to the cited false positives.

(08 Nov '12, 03:42) Volker Barth

A similar behavior was reported when the maintenance plan starts from a workstation instead of a network server as described in this question.

permanent link

answered 06 Nov '12, 16:17

Derli%20Marcochi's gravatar image

Derli Marcochi
1.6k323877
accept rate: 33%

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:

×84
×6

question asked: 06 Nov '12, 15:28

question was seen: 2,682 times

last updated: 08 Nov '12, 04:21