oracle(1)驗證機制以及使用者建立、修改
資料庫的三種驗證機制:
作業系統驗證
密碼檔案驗證
資料庫驗證
注意:sys使用者只有作業系統驗證、密碼檔案驗證
linux下oracle的啟動過程
lsnrctl start
//sqlplus sys/oracle as sysdba
sqlplus /nolog
conn sys/oracle as sysdba
startup www.2cto.com
window下oracle的啟動過程
lsnrctl start
預設進行作業系統驗證,驗證成功就登入不再進行密碼檔案驗證了
密碼檔案驗證中的檔案的路徑 d:\oracle\product\10.2.0\db_1\database\pwd+例項名.ora
sys密碼恢復 可以先把pwdorcl.ora刪了 在用命令生成
orapwd file=d:\oracle\product\10.2.0\db_1\database\pwdorcl.ora password=123456 entries=10
select * from v$pwfile_users;
普通使用者的密碼修改
alter user scott identified by tiger
**oracle 例項沒有啟動 通過作業系統驗證也能登入
建立使用者
create user 使用者名稱
identified by 密碼
default tablespace 預設表空間
temporary tablespace 臨時表空間
quota 整數 k|m|limited on 表空間
ps:create user kyle
identified by kyle
default tablespace kylespace
temporary tablespace temp
quota 50m on kylespace
www.2cto.com
注意:下面不能把unlimited 用在temp上(因為temp是臨時表空間,用來表排序之類才用到)
create user kyle
identified by kyle
default tablespace kylespace
temporary tablespace temp
quota unlimited on temp 修改
alter user kyle
identified by kyle
default tablespace kylespace
temporary tablespace temp
quota unlimited on kylespace
作者 kyle8525_nsn
Oracle 1 安裝和解除安裝
oracle的環境 將兩個壓縮包一起解壓到電腦某個位置的同乙個資料夾 雙擊setup.exe進行安裝 這裡電子郵件可以不用填,接收安全更新勾選掉 安裝的時候選擇乙個位置,還有口令,接下來基本next就可以完成 1 開始 設定 控制面板 管理工具 服務 停止所有oracle服務。2 開始 程式 ora...
常用SQL語句(oracle)(1)
查詢表結構 select column name,data type,data length from user tab cols where table name test desc 表名 變動表 新增列 alter table table name add column name datatyp...
oracle 使用者登入驗證機制 學習筆記
使用者登入驗證機制 oracle 使用者驗證分為 1.普通使用者登入,使用命令 conn 使用者名稱 密碼 登入時採用資料庫驗證方式,只有使用者名稱和密碼正確才能登入到資料庫。2.特權使用者登入,使用命令 conn 使用者名稱 密碼 as sysdba 登入時預設使用作業系統認證 當前計算機使用者在...