1.使用cmd 進入
sqlplus /nolog
conn system/ as
sysdba
2.修改密碼
alter user ebthis identified by new_psw;
3.檢視使用者
select username,password from
dba_users;
4.在建立使用者之前,先要建立表空間
create tablespace test_tablespace datafile 『d:\oracle\oradata\test\test.dbf』 size 1024m autoextend on next 200m maxsize unlimited;
刪除表空間
alter tablespace test_tablespace offline;
drop tablespace test_tablespace including contents and datafiles;
5.建立使用者
create user ebthis
identified by ebthispwd --使用者密碼
default tablespace test_tablespace--表空間是上面建立的
temporary tablespace temp --臨時表空間預設 temp
profile default;
6.授權
grant connect,resource,dba to ebthis;
MySQL建立賬號
以root使用者登入資料庫,執行以下命令 create user zhangsan identified by zhangsan 上面的命令建立了使用者zhangsan,密碼是zhangsan。在mysql.user表裡可以檢視到新增使用者的資訊 命令格式 grant privilegescode ...
mysql建立賬號
建立乙個名叫user1,密碼pigcms的賬號,並賦予給它查詢,插入,更新,刪除 pigcms.pigcms庫所有表 的許可權 grant select insert update delete on pigcms to user1 identified by pigcms flush privil...
Linux上批量建立賬號
應用背景 假設要建立5個賬號,分別是cakin,且這5個賬號未來要想共享乙個目錄,因此應該加入通乙個使用者組,假設這個使用者組為cakingroup,且這5個賬號的密碼均為password,那麼如何建立這5個賬號?解決方案 第一步 建立useradd.sh指令碼 root localhost pwd...