Confluence 6 Oracle Create database user

Source: Internet
Author: User
Tags sqlplus

After creating the user and assigning permissions:

  1. Use sqlplus command line tools to access Oracle from the command line

    sqlplus user/password <as sysdba|as sysoper>

    If your logged-in user is using ' sys ' you need to determine what SYSY permissions you want to use as SYSDBA or as Sysoper.

  2. Creates a confluence user (for example, confluenceuser ) and gives the user only the following permissions:

    create user <user> identified by <password> default tablespace <tablespace_name> Quota Unlimited on < Tablespace_name>; grant Connect to <user>; grant resource to <user>; grant create table to <user>; grant create sequence to <user>; grant create trigger to <user>;
      • Confluence this requires that the user has the permissions described above. Confluence only requires these permissions on the above, so you need to assign specific permissions to the user. This user does not need to create tables, create sequences, and create triggers for these permission roles.

      • Do not give this user select any table permission. This permission will cause problems with other schemas.

      • When you create a user, specify the Table object shown above tablespace .

Https://www.cwiki.us/display/CONFLUENCEWIKI/Database+Setup+for+Oracle


Confluence 6 Oracle Create database user

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.