search
HomeDatabaseMysql TutorialAccess入门教程 19.4 设置和取消数据库密码

Access入门教程 19.4 设置和取消数据库密码

Jun 07, 2016 pm 03:32 PM
accessGetting Started TutorialCancelpassworddatabaseset up

首先我们先讲讲 设置 和 取消 数据库 密码 。将鼠标单击ACCESS菜单栏上的工具主题,将鼠标移动到随后弹出的菜单上的 安全项上,这时在安全项的右面弹出一个更小的菜单。将鼠标移动到这个菜单的第一项 设置 数据库 密码 上,单击鼠标左键。就会弹出一个 设置


 

首先我们先讲讲设置取消数据库密码。将鼠标单击ACCESS菜单栏上的"工具"主题,将鼠标移动到随后弹出的菜单上的 "安全"项上,这时在"安全"项的右面弹出一个更小的菜单。将鼠标移动到这个菜单的第一项"设置数据库密码"上,单击鼠标左键。就会弹出一个"设置数据库密码"的对话框,

Access<strong>入门</strong><strong>教程</strong> 19.4 <strong>设置</strong>和<strong>取消</strong><strong>数据库</strong><strong>密码</strong>

在这个对话框中要我们在第一个文本框中要我们输入数据库密码,并在第二个文本框中再输入一遍刚才输入的密码,以保证我们输入的密码不会因为误输造成我们以后无法打开自己的数据库。将这些完成以后,就单击确定按钮。

这时候弹出一个提示窗口,它提示要用独占方式打开数据库才能设置或撤销数据库密码

Access<strong>入门</strong><strong>教程</strong> 19.4 <strong>设置</strong>和<strong>取消</strong><strong>数据库</strong><strong>密码</strong>

记住要设置数据库密码时,必须要保证这个数据库的打开方式是独立打开方式。好在这个提示框中告诉我们怎样以独立方式打开一个数据库。那我们现在就单击这个提示框上的确定按钮,然后单击"设置数据库密码"对话框上的取消按钮。再单击数据库按钮上的关闭按钮来关闭这个数据库,然后再将鼠标移动到ACCESS 工具栏上的打开图标按钮上,单击鼠标左键,这时会弹出一个"打开"对话框,

Access<strong>入门</strong><strong>教程</strong> 19.4 <strong>设置</strong>和<strong>取消</strong><strong>数据库</strong><strong>密码</strong>

 

在这个对话框中选择需要打开的数据库,然后将鼠标移动到这个对话框中"打开"按钮右面的向下按钮。在弹出的菜单中选择"以独占方式打开",并单击这个选项。

现在我们打开的数据库就可以设置它的密码了。按照刚才我们输入密码的过程再来一遍,这样就可以给这个数据库设置密码了。当下次打开这个数据库的时候,就会发现在打开数据库之前就会在屏幕上出现一个对话框,要求你输入这个数据库密码

Access<strong>入门</strong><strong>教程</strong> 19.4 <strong>设置</strong>和<strong>取消</strong><strong>数据库</strong><strong>密码</strong>

只有你输入正确的密码才能打开这个数据库,否则就不能打开这个数据库

撤销密码也很简单,当你给一个数据库已经设置了一个密码后,要想撤销这个密码,就再用独立方式打开这个数据库,然后单击原来是"设置数据库密码"那个命令的位置,现在已经是"撤销数据库密码"命令了,单击这个命令,这时会在屏幕上弹出一个对话框,

Access<strong>入门</strong><strong>教程</strong> 19.4 <strong>设置</strong>和<strong>取消</strong><strong>数据库</strong><strong>密码</strong>

这次我们只要再输入一次正确的密码,就可以将这个数据库密码撤销了。



Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What Are the Limitations of Using Views in MySQL?What Are the Limitations of Using Views in MySQL?May 14, 2025 am 12:10 AM

MySQLviewshavelimitations:1)Theydon'tsupportallSQLoperations,restrictingdatamanipulationthroughviewswithjoinsorsubqueries.2)Theycanimpactperformance,especiallywithcomplexqueriesorlargedatasets.3)Viewsdon'tstoredata,potentiallyleadingtooutdatedinforma

Securing Your MySQL Database: Adding Users and Granting PrivilegesSecuring Your MySQL Database: Adding Users and Granting PrivilegesMay 14, 2025 am 12:09 AM

ProperusermanagementinMySQLiscrucialforenhancingsecurityandensuringefficientdatabaseoperation.1)UseCREATEUSERtoaddusers,specifyingconnectionsourcewith@'localhost'or@'%'.2)GrantspecificprivilegeswithGRANT,usingleastprivilegeprincipletominimizerisks.3)

What Factors Influence the Number of Triggers I Can Use in MySQL?What Factors Influence the Number of Triggers I Can Use in MySQL?May 14, 2025 am 12:08 AM

MySQLdoesn'timposeahardlimitontriggers,butpracticalfactorsdeterminetheireffectiveuse:1)Serverconfigurationimpactstriggermanagement;2)Complextriggersincreasesystemload;3)Largertablesslowtriggerperformance;4)Highconcurrencycancausetriggercontention;5)M

MySQL: Is it safe to store BLOB?MySQL: Is it safe to store BLOB?May 14, 2025 am 12:07 AM

Yes,it'ssafetostoreBLOBdatainMySQL,butconsiderthesefactors:1)StorageSpace:BLOBscanconsumesignificantspace,potentiallyincreasingcostsandslowingperformance.2)Performance:LargerrowsizesduetoBLOBsmayslowdownqueries.3)BackupandRecovery:Theseprocessescanbe

MySQL: Adding a user through a PHP web interfaceMySQL: Adding a user through a PHP web interfaceMay 14, 2025 am 12:04 AM

Adding MySQL users through the PHP web interface can use MySQLi extensions. The steps are as follows: 1. Connect to the MySQL database and use the MySQLi extension. 2. Create a user, use the CREATEUSER statement, and use the PASSWORD() function to encrypt the password. 3. Prevent SQL injection and use the mysqli_real_escape_string() function to process user input. 4. Assign permissions to new users and use the GRANT statement.

MySQL: BLOB and other no-sql storage, what are the differences?MySQL: BLOB and other no-sql storage, what are the differences?May 13, 2025 am 12:14 AM

MySQL'sBLOBissuitableforstoringbinarydatawithinarelationaldatabase,whileNoSQLoptionslikeMongoDB,Redis,andCassandraofferflexible,scalablesolutionsforunstructureddata.BLOBissimplerbutcanslowdownperformancewithlargedata;NoSQLprovidesbetterscalabilityand

MySQL Add User: Syntax, Options, and Security Best PracticesMySQL Add User: Syntax, Options, and Security Best PracticesMay 13, 2025 am 12:12 AM

ToaddauserinMySQL,use:CREATEUSER'username'@'host'IDENTIFIEDBY'password';Here'showtodoitsecurely:1)Choosethehostcarefullytocontrolaccess.2)SetresourcelimitswithoptionslikeMAX_QUERIES_PER_HOUR.3)Usestrong,uniquepasswords.4)EnforceSSL/TLSconnectionswith

MySQL: How to avoid String Data Types common mistakes?MySQL: How to avoid String Data Types common mistakes?May 13, 2025 am 12:09 AM

ToavoidcommonmistakeswithstringdatatypesinMySQL,understandstringtypenuances,choosetherighttype,andmanageencodingandcollationsettingseffectively.1)UseCHARforfixed-lengthstrings,VARCHARforvariable-length,andTEXT/BLOBforlargerdata.2)Setcorrectcharacters

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools