1.什么是关系型数据库?
关系数据结构,关系操作,关系的约束条件。
关系数据结构:
a.属性值具有原子性,不可分解.
b.没有重复元组
c.理论上没有行序,实际使用可用。
关系的约束条件:
a.实体完整性,b.参照完整性,c.用户定义完整性
2.oracle的默认用户
a.查看系统中用户
select username, account_status from dba_users where
account_status ='OPEN'
b.解锁用户
Alter user user_name account unlock;
eg: alter user scott account unlock;
c.设置登录密码(口令)
Alter user user_name identified by password;
Eg: alter user scott identified by manager;
3.本机启动oracle enterpiase Manage (OEM)
https://localhost:1158/em