Skip schema verification
- Last Updated: March 30, 2020
- 1 minute read
- OpenEdge
- Version 12.2
- Documentation
Skip schema verification
When r-code runs (each time a table, view, or buffer is opened), the DataServer checks the data definitions of the MS SQL Server data source to ensure the data definitions match the schema definitions in the schema holder. If the definitions do not match, the DataServer returns an error.
Unmatched definitions can cause corruption of data. For this
reason, checking the integrity of data definitions at run time ensures
the data corruption due to unmatched definitions will not occur.
The skip schema check feature can be used to bypass this check at
run time. Because definition verification is time consuming in a
production environment, you might consider using the -Dsrv skip_schema_check startup
parameter if your environment allows. You might consider using this option
to increase performance, but only if you are certain that the data
definitions in the data source match your schema holder definitions.
The following example shows how to use the -Dsrv parameter
with the skip schema check option in the CONNECT statement:
|
-Dsrv skip_schema_check.