建立用戶後而且指派權限:java
sqlplus
命令行工具經過命令行來訪問 Oracle
sqlplus user/password <as sysdba|as sysoper>
|
若是你的登陸用戶使用的是 'sys' 你須要將 "as sysdba" 或 "as sysoper" 來肯定你但願使用的何種 sysy 權限。sql
confluenceuser
),而後僅給這個用戶賦予下面的權限:
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>;
|
select any table
權限。這個權限將會致使其餘 schemas 的問題。 tablespace
。https://www.cwiki.us/display/CONFLUENCEWIKI/Database+Setup+for+Oracleeclipse