Oracle的一些基本操作
1. Oracle的启动与关闭及其相关的操作
答:dos下用sqlplusw /nolog 或是在 运行 输入 sqlplusw /nolog;
启动:
Startup;
格式:
startup [force] [restrict] [pfile=filename] [open [recover] [database] |nomount|mount]
Force:强制启动数据库。
Restrict:以限制模式的方式启动数据库,只允许具有restricted session权限的用户连接。
Pfile:指定启动时所使用的静态初始化参数文件
Open:以打开数据库方式启动。
Recover:启动数据库后进行介质恢复。
Mount:以装载数据库方式启动。
Nomount:以不装载数据库方式启动。
startup命令后面的参数都是可选参数,不同的组合表示不同的启动模式,例如:
startup open 或startup 普通方式启动
Startup nomount 未装载方式启动
Startup mount 装载方式启动
关闭:
相关操作
修改帐号口令:
Alter user username identified by password;
修改锁定帐户的口令:
Alter user username identified by password account unlock;
锁定帐户:
Alter user username account lock;
解除锁定帐户:
Alter user username account unlock;