What Do I Do If the Assessment Task Is Connected but the Pre-check Fails?
Symptom
The DBA permission was granted to the connection user who created the evaluation project. The connection test of the evaluation task was successful, but the pre-check failed.
Possible Cause
The user has the DBA permission, but is not the default DBA role.
Solution
- Log in to the source database and run the following SQL statement to check whether the current user is the default DBA role:
select * from dba_role_privs where grantee='user_name';
- If the value of default_role of dba is no, the role is not the default DBA role.
- user_name indicates the name of the user used to connect to the source database.
- Run the following SQL statement to change the role to the default one:
ALTER USER user_name DEFAULT ROLE dba;
- After the modification, perform the pre-check again.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot