|
security
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Removing A MS Access 97 DB Password Using MS Access 2007Hi everyone. I have several MS Access databases that were created in Access
95/97 and were password protected. I need to remove the passwords from those databases using MS Access 2007, but am not able to do so. I have Admin rights on the System.mdw as well as all the databases and I know what the DB passwords are. The problem I run into is when trying to update the databases to Access 2003/2007, I get a message stating that I must remove the password first. However, the option to delete/remove the database password is greyed out. Any ideas? -- D.M. Rollins Atlanta, GA USA labrad***@bellsouth.net You'll need to open them in 97 and remove the password - then update.
You can email me if you need help. -- Show quoteHide quoteJoan Wild Microsoft Access MVP "Debbie Rollins" <DebbieRoll***@discussions.microsoft.com> wrote in message news:995E1665-EB3A-4D4A-87B8-9C5CBF4E2D8D@microsoft.com... > Hi everyone. I have several MS Access databases that were created in Access > 95/97 and were password protected. I need to remove the passwords from those > databases using MS Access 2007, but am not able to do so. > > I have Admin rights on the System.mdw as well as all the databases and I > know what the DB passwords are. The problem I run into is when trying to > update the databases to Access 2003/2007, I get a message stating that I must > remove the password first. > > However, the option to delete/remove the database password is greyed out. > > Any ideas? > -- > D.M. Rollins > Atlanta, GA USA > labrad***@bellsouth.net We no longer have MS Office/Access 97....therefore we don't have "access" to
Access. Any other ideas? -- Show quoteHide quoteD.M. Rollins Atlanta, GA USA labrad***@bellsouth.net "Joan Wild" wrote: > You'll need to open them in 97 and remove the password - then update. > > You can email me if you need help. > > > -- > Joan Wild > Microsoft Access MVP > "Debbie Rollins" <DebbieRoll***@discussions.microsoft.com> wrote in message news:995E1665-EB3A-4D4A-87B8-9C5CBF4E2D8D@microsoft.com... > > Hi everyone. I have several MS Access databases that were created in Access > > 95/97 and were password protected. I need to remove the passwords from those > > databases using MS Access 2007, but am not able to do so. > > > > I have Admin rights on the System.mdw as well as all the databases and I > > know what the DB passwords are. The problem I run into is when trying to > > update the databases to Access 2003/2007, I get a message stating that I must > > remove the password first. > > > > However, the option to delete/remove the database password is greyed out. > > > > Any ideas? > > -- > > D.M. Rollins > > Atlanta, GA USA > > labrad***@bellsouth.net > I have 97, if you want to email them to me, I'll do it.
-- Show quoteHide quoteJoan Wild Microsoft Access MVP "Debbie Rollins" <DebbieRoll***@discussions.microsoft.com> wrote in message news:A94E1398-2A7C-4DA0-95DC-28785111C088@microsoft.com... > We no longer have MS Office/Access 97....therefore we don't have "access" to > Access. Any other ideas? > -- > D.M. Rollins > Atlanta, GA USA > labrad***@bellsouth.net > > > "Joan Wild" wrote: > >> You'll need to open them in 97 and remove the password - then update. >> >> You can email me if you need help. >> >> >> -- >> Joan Wild >> Microsoft Access MVP >> "Debbie Rollins" <DebbieRoll***@discussions.microsoft.com> wrote in message news:995E1665-EB3A-4D4A-87B8-9C5CBF4E2D8D@microsoft.com... >> > Hi everyone. I have several MS Access databases that were created in Access >> > 95/97 and were password protected. I need to remove the passwords from those >> > databases using MS Access 2007, but am not able to do so. >> > >> > I have Admin rights on the System.mdw as well as all the databases and I >> > know what the DB passwords are. The problem I run into is when trying to >> > update the databases to Access 2003/2007, I get a message stating that I must >> > remove the password first. >> > >> > However, the option to delete/remove the database password is greyed out. >> > >> > Any ideas? >> > -- >> > D.M. Rollins >> > Atlanta, GA USA >> > labrad***@bellsouth.net >> Hi, Debbie.
> We no longer have MS Office/Access 97....therefore we don't have "access" Use the following VBA procedure in Access 97 and later (it works even in > to > Access. Any other ideas? Access 2007) to remove the database password on the Access 97 databases (replace with your own file path and password): Public Function removeDBPassword() As Boolean On Error GoTo ErrHandler Dim wkSpc As Workspace Dim db As Database Set wkSpc = CreateWorkspace("", "Admin", "", dbUseJet) Set db = wkSpc.OpenDatabase("C:\Work\A97DB.mdb", True, False, ";pwd=MSFT") db.NewPassword "MSFT", "" removeDBPassword = True ' Success. CleanUp: Set db = Nothing Set wkSpc = Nothing Exit Function ErrHandler: MsgBox "Error in removeDBPassword( )." & vbCrLf & vbCrLf & _ "Error #" & Err.Number & vbCrLf & vbCrLf & Err.Description Err.Clear removeDBPassword = False ' Failed. GoTo CleanUp End Function Essentially, this procedure replaces the current database password with a zero-length string. I've never tried it on Access 95 database passwords, but I suspect it will work on those, too. HTH. Gunny See http://www.QBuilt.com for all your database needs. See http://www.Access.QBuilt.com for Microsoft Access tips and tutorials. Blogs: www.DataDevilDog.BlogSpot.com, www.DatabaseTips.BlogSpot.com http://www.Access.QBuilt.com/html/expert_contributors2.html for contact info.
Other interesting topics
Access 2007 user level security (lack thereof)
User-Level Security problem - app does not trigger logon screen Security Warning Access 2007 Error 2614 - User level Security Exclusive Use Error users over network 2. block code re-engineering dao technique to add column to table in remote ULS db.. users over network Do Table Permissions Override Query permissions? |
|||||||||||||||||||||||