RVR-SYNP-403
- 1 Minute to read
- Print
- DarkLight
- PDF
RVR-SYNP-403
- 1 Minute to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Issue Summary
- The error "Denied access table grants and permissions. Error Code: RVR-SYNP-403" indicates that the user attempting to connect through Rivery to Azure Synapse does not have the necessary permissions to access a specific table or schema. This error is commonly associated with insufficient database permissions or not having the correct privileges assigned to the database user.
Action Steps:
- Verify the user's permissions:
- Grant the necessary privileges to the user expected to perform operations via Rivery. You can grant permissions using SQL commands such as:
GRANT CONNECT ON DATABASE <database> TO <username>; GRANT USAGE ON SCHEMA <schema> TO <username>; GRANT SELECT ON ALL TABLES IN SCHEMA <schema> TO <username>;
- Ensure that these permissions are granted for the appropriate database and schema needed for your operations【4:2†source】.
- Grant the necessary privileges to the user expected to perform operations via Rivery. You can grant permissions using SQL commands such as:
- Check that the user has appropriate permissions within the Azure Synapse instance. This includes ensuring the user has access to necessary tables and that there are no network-level restrictions preventing access.
- If using Azure Active Directory for authentication, ensure that the AAD user or role is correctly configured and has the necessary permissions within the Azure Synapse environment.
- Verify the user's permissions:
External References:
- For further reading on granting permissions in Azure Synapse, please refer to the Azure Synapse documentation regarding managing logins and users.
- Detailed connection and permission configuration can be found in the Rivery Azure Synapse documentation.
If the issue persists or you need further assistance, please open a ticket with Rivery support.
Was this article helpful?