An Azure service for ingesting, preparing, and transforming data at scale.
The error message you are encountering indicates an issue with the SQL Server object "c_branches". There are two probable causes for this error:
- The specified object "c_branches" may not exist in the database you are targeting. Ensure that the object (likely a table or a view) exists in the specified database and that you're connecting to the correct database.
- The user that you are connecting with may not have the necessary permissions to access or manipulate the "c_branches" object. Check the permissions for the user associated with the connection and make sure that they have the appropriate rights.
Try to check if the object "c_branches" actually exists in your database. Run a query to see if you can retrieve information about it, or check directly within your SQL Server Management Studio or other database tools.
Also, verify that the user you're connecting with has the necessary permissions to access the "c_branches" object. If not, you may need to grant the necessary permissions.