Oracle数据库安装后,会自带一个scott账户,该账户下会有一张emp表
1.解锁scott账户的命令
alter user scott account unlock;
2.修改scott账户的密码
alter user scott identified by password;
如何连接Oracle数据库
连接oracle可以通过cmd窗口输入命令 sqlplus/sqlplusw来连接oracle.
为了方便操作和视觉美观一般采用另外的工具 plsql developer.
使用一个用户登录后切换到另外一个用户命令
conn user/password; --user用户名 password密码
show user; --查看当前用户
exit; -- 断开连接并且退出连接窗口
disc; -- 断开连接
时间: 2024-09-30 00:26:21