I created a .adp database with a sql 2000 backend.
Whenever a user connects to the db, he is prompted with the sa username and a blank password. How do you disable that annoying and dangerous sa username?
never let access connect as the sa user. Create a user for Access, give it only the permissions that will be needed and change all your connection strings to that user. Your conenction strings can include the password if you don't want people to have to log in. In this case, make the Accesss user an application user not a regular user.
What probably happened was that when you were creating/testing the application, you used the SA account for the connection. Then you provided everyone with the application (maybe as a link or template). That had the login (not the password) cached. I've had this happen with Crystal Report templates I've created, which is why I use an application login/password as the final pre-production test.
Unless the password for the SA account is blank (and shame on you if it is), then there isn't any problem. The user will just have to enter their own login/password to access anything.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.