新建oracle資料庫

2021-09-11 05:01:41 字數 1589 閱讀 6239

2023年2月21日 蘇州

biip的資料庫名為  biiporcl    所用使用者預設的密碼為 root(初始化設定的)

使用者為 biipuser  密碼為 root

create user biipuser identified by root;

grant create functions to biipuser;

grant create procedure to biipuser;

grant create packages to  biipuser;

grant create types to     biipuser;

grant create session to   biipuser;

grant create  trigger   to  biipuser;

grant create  sequence  to  biipuser;

grant resource to biipuser;

grant create table to biipuser;

grant create function to biipuser;

grant create procedure to biipuser;

grant create package to biipuser;

grant create type to biipuser;

grant resource to biipuser;

grant connect to biipuser;

grant dba to biipuser;

eos75的資料庫名為  eos75 所用使用者預設的密碼為 root(初始化設定的)

使用者為 eosuser  密碼為 root

eos75    所用使用者預設的密碼為 root(初始化設定的)

create user eosuser identified by root;

grant create functions to eosuser;

grant create procedure to eosuser;

grant create packages to  eosuser;

grant create types to     eosuser;

grant create session to   eosuser;

grant create  trigger   to  eosuser;

grant create  sequence  to  eosuser;

grant resource to eosuser;

grant create table to eosuser;

grant create function to eosuser;

grant create procedure to eosuser;

grant create package to eosuser;

grant create type to eosuser;

grant resource to eosuser;

grant connect to eosuser;

grant dba to eosuser;''

怎樣新建Oracle資料庫

新建oracle資料庫三種方法 1.通過執行oracle database configuration assistant 建立配置或刪除資料庫 也可在命令列下輸入dbca 2.用命令列的方式建立資料庫 3.通過執行自定義的批處理指令碼 或create oracle sid.bat create o...

Oracle新建資料庫 步驟

確定是以管理員身份登入的 1.首先,建立 新 使用者 create user username identified by password username 新使用者名稱的使用者名稱 password 新使用者的密碼 也可以不建立新使用者,而仍然用以前的使用者,如 繼續利用scott使用者 2.建...

怎樣新建Oracle資料庫

原文 怎樣新建oracle資料庫 新建oracle資料庫三種方法 1.通過執行oracle database configuration assistant 建立配置或刪除資料庫 也可在命令列下輸入dbca 2.用命令列的方式建立資料庫 3.通過執行自定義的批處理指令碼 或create oracle...