資源描述:
《Oracle自學(xué)筆記》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫。
1、Oracle命令一.連接命令1.connsystem/adminsa@Orclassysdba(sysoper)2.disc3.passw4.showuser;5.exit二.文件操作1.startD:query.sql
2、@D:query.sql2.editD:query.sql3.spoolspoolD:query.sql;select*fromemp;spooloff;三.交互命令1.Select*fromempwhereename=’&ename’;四.環(huán)境變量1.setlinesize80;2.setpagesize5;Oracle用戶管理1.創(chuàng)建用戶(需要管理員用戶權(quán)限
3、)createuserusernameidentifiedbypassword;2.給用戶修改密碼(需要管理員用戶權(quán)限)passwordusername3.刪除用戶(需要管理員用戶權(quán)限)dropuserusername注:如果要?jiǎng)h除的用戶已經(jīng)創(chuàng)建表,需加參數(shù)cascade,將同時(shí)刪除表4.授權(quán)用戶(需要管理員用戶權(quán)限)grantconnecttousername;注:Oracle權(quán)限分為兩種a.系統(tǒng)權(quán)限:用戶對(duì)數(shù)據(jù)庫的相關(guān)權(quán)限,如登錄,建庫表索引修改密碼等140b.對(duì)象權(quán)限:用戶對(duì)其他用戶的數(shù)據(jù)對(duì)象的訪問的權(quán)限25數(shù)據(jù)對(duì)象:表視圖存儲(chǔ)過程等角色是對(duì)用戶權(quán)限的批量授權(quán)角色分為兩種a.預(yù)定義
4、角色b.自定義角色三種比較重要的角色1.connect2.dba3.resource對(duì)象權(quán)限的授權(quán)grantselectontableNametousername;--只授權(quán)select對(duì)象權(quán)限給某用戶select*fromscott.emp;--涉及到方案的概念對(duì)象權(quán)限的傳遞grantselectontableNametousernamewithgrantoption;系統(tǒng)權(quán)限的傳遞grantconnecttousernamewithadminoption;1.鎖定和解鎖用戶alteruserscottaccountlock;alteruserscottaccountunlock;2.
5、撤銷授權(quán)revokeselectontableNamefromusername;注:使用傳遞授權(quán)時(shí)如果上級(jí)權(quán)限被撤銷時(shí)下級(jí)的權(quán)限同時(shí)被撤銷形象比喻為株連政策3.查看表結(jié)構(gòu)desctableName4.使用profile管理用戶的密碼(1).createprofileprofilenamelimitfailed_login_attempts3password_lock_time1;alteruserscottprofileAccount.lock;注:創(chuàng)建名為profilename的配置文件,內(nèi)容為登錄失敗嘗試次數(shù)3密碼鎖定1天.(2).createprofileprofilenameli
6、mitpassword_life_time27password_grace_time3;注:創(chuàng)建名為profilename的配置文件,內(nèi)容為強(qiáng)制27天修改一次密碼寬限3天(3).createprofileprofilenamelimitpassword_life_time27password_grace_time3password_reuse_time30;注:啟用password歷史(4).dropprofileprofilename[cascade];注:刪除用戶配置文件加參數(shù)cascade同時(shí)刪除相關(guān)約束Oracle表管理1.表的操作(1).創(chuàng)建表createtablestuden
7、t(studentIdnumber(4),studentNamevarchar2(12),studentSexchar(2),studentBirthdaydate,studentSalarynumber(7,2));(2).添加表字段altertablestudentadd(studentAddvarchar2(50));(3).修改表字段altertablestudentmodify(studentAddvarchar2(100));(4).刪除表字段altertablestudentdropcolumn(studentSalarynumber(7,2));(5).表重命名renam
8、estudenttostudentTable;(6).表刪除droptablestudent;注:表中有數(shù)據(jù)時(shí)修改表字段刪除表字段和修改表名操作盡量避免有風(fēng)險(xiǎn)(7).插入記錄Insertintoscott.student(studentID,studentName,sex,studentBirthday)values(1,’祁連山’,’男’,’1986-5-21’);(8).修改記錄updatestudentsetsex=’男’,s