啟動:emctl start dbconsole
關閉:emctl stop dbconsole
新增使用者:
create user 使用者名稱 identified by 密碼 default tablespace
users temporary tablespace temp;
授予許可權:
grant connect,resource,dba to 使用者名稱;
檢視擁有sysoper或sysdba的許可權的使用者資訊:
select * from v$pwfile_users;
檢視資料庫例項:
select host_name, instance_name, version from v$instance;
檢視當前使用的資料庫例項:
select name from v$database;
檢視所有使用者:
select * from all_users;
select * from dba_users;
檢視當前例項下所有表:
select * from user_tables;
使用者解鎖:
alter user[b] scott [/b]account unlock;
PostgreSQL安裝和建立使用者和建立資料庫
可以參考postgresql官網安裝教程 su postgres 首先切換到postgres bash 4.1 psql 輸入psql psql 10.5 type help for help.postgres 建立使用者 postgres create user username with pas...
Linux使用者管理 建立使用者和刪除使用者
一 使用者管理的命令 1 建立使用者命令有兩種 adduser useradd 2 刪除使用者命令 userdel 二 兩個使用者建立命令之間的區別 adduser 會自動為建立的使用者指定主目錄 系統shell版本,會在建立時輸入使用者密碼。useradd 需要使用引數選項指定上述基本設定,如果不...
如何建立使用者組和使用者
問 unix下建立使用者組的命令是?答 groupadd g gid groupname 說明 g 制定組的id號 gid 組的id號 不能與現有的組id號重複 groupname 組名 如 groupadd g 110 vteam 問 unix下如何建立使用者?答 useradd命令增加使用者組 ...