Oracle Licensing, table backup, user management

Source: Internet
Author: User

User Management Creation User: Create username identified by password;    Modify password: Alter user username identified by password;    Activate User: Alter user username account unlock; Delete users: Drop user user name; User Rights Management1, Authorization permissions (connect, resource, DBA) grant permission 1, permission 2,... to username; 2, REVOKE permissions revoke permissions 1, permission 2,... from user name; 3, important permissions require the user to exit and log back on before loading data table permissions Management1, Authorization permissions (all, select, Update, DELETE, INSERT, alter (only table structure can be modified)) grant permission 1, permission 2,... on table name to user name; 2, revoke permissions 1, permissions 2,... on table name from user name; 3, table permissions in addition to the drop, create these 2 permissions belong to the owner, other permissions can share Select, INSERT, UPDATE, DELETE, alter data backup1, full table backup CREATE table secondary table name as Select*The name of the From Main table; 2, data internal backup CREATE table secondary table name as select Ename,empno||Deptno,... from Sun_emp; 3, data backup is full-field full data replication, but constraints do not replicate data synchronization updates the first step: delete the data from the secondary table delete from secondary table; Step two: Insert the main table information insert into secondary table select* from the main table;

Oracle Licensing, table backup, user management

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.