oracle12c建立使用者

2021-07-10 19:54:23 字數 379 閱讀 3540

本人在centos7安裝好資料庫(oracle12c),準備建立乙個使用者的時候 報錯了,如下:

sql> create user bpmx3 identified by bpmx3;

create user bpmx3 identified by bpmx3

*error at line 1:

ora-65096: invalid common user or role name

所以我從網上找到了解決的辦法:

sql> create user c##bpmx3 identified by bpmx3;

user created.

至此使用者已經成功建立,關鍵點:c##bpmx3 

希望大家看到之後能有所幫助。

Oracle 12c如何建立scott使用者

oracle 12c 做了很大的改變,整合了sql developer,可以方便大家的使用,scott使用者已經被移除了,需要的話可以自己建立,並授予許可權。按照以下步驟即可完成 1.進入cmd命令視窗,連線oracle資料庫 sqlplus as sysdba 2.建立c scott使用者 這裡建...

Oracle 12C 建立使用者以c 開頭

原因分析 oracle 12c引入了cdb container database資料庫容器 與pdb pluggable database插拔資料庫 的新特性,在oracle 12c引入的多組使用者環境 multitenanant environment 中,允許乙個資料庫容器承載多個可插拔資料庫。...

Oracle12c 傳入scott使用者

oracle12c如何傳入scott使用者 安裝完oracle12c後,與原來的不同,預設情況下是沒有scott使用者的,也沒有相應的emp或者其他表,當然,我們可以自己建立乙個。1.開始 執行 cmd c users administrator sqlplus sys 940109 as sysd...