windows下登錄sql plus下基本用法sql
1,常見登錄命令數據庫
1) connect 用戶登陸到數據庫服務windows
Connect [用戶名/口令 @ 數據庫名]ide
2) showui
Show user ; show parameters; show relspa
Connect [用戶名/口令 @ 數據庫名]操作系統
2) describeit
Desc scott.dept //查看錶dept表頭 table
4) Selectclass
Select * from scott.dept; //查看dept全部內容
5) host -->進入操做系統,exit返回到sqlplus
Quit exit退出sqlplus
6)查看用戶 是否解鎖,並給用戶 hr解鎖,以及修改密碼。
Select username,account_status from dba_users; //查看各用戶狀況
alter user hr account unlock; //解鎖
Alter user hr identified by 1035; //設密碼
Conn hr/1035
①建立用戶 並受權 登錄。
SQL>create user dxxxy01 identified by 1035;
SQL> grant dba to dxxy01;
SQL> conn dxxy01/1035;
②刪除用戶 drop user 用戶名;
或者drop user 用戶名 cascade;(這將會刪除與用戶相關聯的表)
7)瞭解用戶hr全部的數據表
select table_name,tablespace_name, owner from dba_tables where owner='HR'; 查看HR的表名,表空間,以及全部者
Select * from hr.jobs; //查看jobs裏面全部數據