Some statements used by DBAs

Source: Internet
Author: User

Steps:
1. Create a temporary table space
Create temporary tablespace cindex_temp tempfile '/u01/oracle/app/oradata/mytablespace/cindex_temp.dbf ' size 1024m Autoextend on next 100m maxsize 10240m extent management local;
2. Create a table space
Create tablespace cindex logging datafile '/u01/oracle/app/oradata/mytablespace/cindex dbf ' size 1024m autoextend on next 100m MaxSize 10240m extent management local;
3. Create a user and specify a tablespace
Create user ABC identified by ABC default tablespace ABC temporary tablespace cindex_temp;
4. Create roles and assign permissions to roles
CREATE ROLE R_insert;
CREATE ROLE R_delete;
CREATE ROLE r_update;
CREATE ROLE R_delete;
Grant INSERT on SFIS1. c_product_t to R_insert;
Grant DELETE on SFIS1. c_product_t to R_delete;
Grant UPDATE on SFIS1. c_product_t to R_update;
Grant DELETE on SFIS1. c_product_t to R_delete;
5. Giving the role authorization
Grant INSERT on SFIS1. c_product_t to R_insert;
Grant DELETE on SFIS1. c_product_t to R_delete;
Grant UPDATE on SFIS1. c_product_t to R_update;
Grant DELETE on SFIS1. c_product_t to R_delete;
6. Assigning Roles to users
GRANT R_insert,r_delete,r_update,r_delete to Sfis1;

Some statements used by DBAs

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.