Magic Music Technology Li Xinghua Teacher Oracle Note reading summary

Source: Internet
Author: User

    • Disable the user login password

user Scott Current login password is invalid, note requires DBA users to operate

Sql>alter USER Scott PASSWORD EXPIRE;

Description: After the above statement operation,when the Scott user logs back in, the database prompts for a new login password

    • Synonyms

1 . Synonyms are an alias for database schema objects and are often used to simplify object access and improve the security of object access. When using synonyms,the Oracle database translates it into the name of the corresponding schema object. Similar to views, synonyms do not occupy the actual storage space, only the definition of synonyms is saved in the data dictionary.

2, synonym classification: public synonym, private synonym;

3. public synonym: For a database object that creates a public synonym, any user in the database can access the object through a synonym, without having to pass the user name . object name, you can write access by using the DML,DDL statements manipulate synonyms and then manipulate actual objects;

4. private synonym: The object that creates a private synonym can only be used by the owning user of the object, but the user may authorize other users to use the synonym in a way that is granted by the permission;

5.  Syntax:CREATE  Public  synonymJiayouzhan forEpm.o_ps_base_info;

    • View not updatable

We can make an artificial operation to achieve an updatable view that is not updatable.

sql>CREATE VIEW v_student as SELECT * from Infowith READ only;

    • ROWNUM

ROWNUM is a pseudo-column in the Oracle database,ROWNUM does not support rownum>2 similar operations, because ROWNUM always from 1 Start counting,1>2 is never set up, so the query result set is empty;

    • Index

1, Not all tables, columns are suitable for indexing, the principle of indexing must be large table data and indexed columns are more commonly used;

2, The index will occupy the corresponding table 1.2 times of disk space, which is the performance of Oracle for space-based performances;


This article is from the "Oralce Learning path" blog, make sure to keep this source http://dushuai.blog.51cto.com/9461011/1585493

Magic Music Technology Li Xinghua Teacher Oracle Note reading summary

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.