Reputation: 1059
I am in the process of migrating an Access Database to an SQL Server 2016 Database. For this I am using the SQL Server Import and Export Wizard.
The username is set to "admin" by default and I have provided the correct password. I can open the .mdb file just fine with Access 2016. When I click "Next" I receive this error:
I don't have an .mdw file in the folder, but I know the right credentials. How can I gain permission to import the database?
Upvotes: 1
Views: 902
Reputation: 32642
If you've got an Access file with user-level security (secured with an .mdw
file), you will need the file to work with it.
Since you're apparently able to login to the database, you're probably using the system workgroup.
As posted in this answer by HansUp, you can identify the location of the workgroup file by typing ?SystemDb
in the immediate window
Without the .mdw
file, there's no way to import the database (outside of hacking into it, that is)
Upvotes: 2