validate-database
Ensure the integrity of Firebird databases by validating data and indexes, with options to fix errors and monitor detailed progress during the process.
Instructions
Validates the integrity of the Firebird database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
options | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"options": {
"additionalProperties": false,
"properties": {
"checkData": {
"default": true,
"description": "Whether to validate data integrity",
"type": "boolean"
},
"checkIndexes": {
"default": true,
"description": "Whether to validate indexes",
"type": "boolean"
},
"fixErrors": {
"default": false,
"description": "Whether to attempt to fix errors",
"type": "boolean"
},
"verbose": {
"default": false,
"description": "Whether to show detailed progress",
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
}