1. 程式人生 > >oracle資料庫建立使用者並授權

oracle資料庫建立使用者並授權

Oracle中建立並授權使用者

sqlplus username/[email protected]:port/SID               //終端連線資料庫

create user username identified by password        //建立使用者

grant connect to username;                                        //授權使用者connect許可權

grant resource to username;                                      //授權使用者resource許可權

grant dba to username;                                               //授權使用者dba許可權

conn username/password                                         //新建的使用者連線資料庫