Hi ,
Thanks for reaching out to Microsoft Q&A.
This error occurs because your Microsoft Access setup is trying to reference master.sysdatabases
, which is not allowed in azure SQL db. Unlike on-premises SQL Server, azure SQL db does not support querying system objects like sysdatabases
in the master
database. Try using sys.databases
in the master
database or sys.objects
within the target database. However, Access might be generating queries internally that you can't modify, so the following fixes may work better.
Try if any of the below gives you some progress in fixing the issue.
- Try using ODBC Driver 17 instead of 18.
- Check your Access version (Office 365 / 2019 / 2021).
- Verify firewall settings in Azure SQL Server to allow your IP.
Please feel free to click the 'Upvote' (Thumbs-up) button and 'Accept as Answer'. This helps the community by allowing others with similar queries to easily find the solution.