When trying to run the database consistency checker on Windows having a MSSQL database, the command prompt shows a lot of errors and checking the ardebug.log the following is observed: |
This knowledge article may contain information that does not apply to version 21.05 or later which runs in a container environment. Please refer to Article Number 000385088 for more information about troubleshooting BMC products in containers. If you are using Microsoft SQL Server 2012 or above database you will need to create synonyms for the trace_xe_action_map and trace_xe_event_map system procedure before running database consistency checker utility. To create the synonyms
Execute the following SQL statements: create synonym trace_xe_action_map for sys.trace_xe_action_map;
create synonym trace_xe_event_map for sys.trace_xe_event_map;
...............................
Additional article(s)
Remedy - Server - Database Consistency checker (-checkdb) does not work in 9.1.x displaying the error: "transport error 202: bind failed: Address already in use"
|