Oracle (1) authentication mechanism and user creation and modification

Source: Internet
Author: User


Oracle (1) authentication mechanism and three authentication mechanisms for User Creation and database modification: operating system verification Password File verification database verification note: sys users only need OS verification and password file verification. linux oracle start process lsnrctl start // sqlplus sys/oracle as sysdbasqlplus/nologconn sys/oracle as sysdbastartup www.2cto.com window oracle start Process lsnrctl start verifies the operating system by default, if the verification is successful, the password file is no longer verified and the path D: \ oracle \ product \ 10.2.0 \ db_1 \ database \ PWD + Instance name is not verified. to restore the ora sys password, you can set PWDorcl first. ora deleted and used commands to generate orapwd file = D: \ oracle \ product \ 10.2.0 \ db_1 \ database \ PWDorcl. ora password = 123456 entries = 10 select * from v $ pwfile_users; change the password of a common user alter User scott identified by tiger ** the oracle instance is not started and can also be logged on to create user create User username identified by password default tablespace Temporary tablespace Quota integer K | M | Limited on tablespace PS: create user kyle identified by kyle default tablespace kylespace Temporary tablespace Temp Quota 50 M on kylespace www.2cto.com Note: The following cannot use unlimited on Temp (because Temp is a Temporary tablespace, used for table sorting) create user kyle identified by kyle default tablespace kylespace Temporary tablespace Temp Quota unlimited on Temp modify alter user kyle identified by kyle default tablespace kylespace Temporary tablespace Temp Quota unlimited on kylespace author kyle8525_nsn

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.