重建 scott 用户

1、删除scott 用户
SYS@PROD> drop user scott cascade;
2、重建 scott 用户
如需重建 scott 用户方案, 需退出 scott 用户, 使用 sys 用户执行如下脚本
SYS@PROD>@?/rdbms/admin/utlsampl.sql
Disconnected from Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production
如执行脚本后 scott 用户没有重建, 可以重启数据库实例后再次执行。
3、 scott 用户登录
[oracle@enmoedu1 ~]$ sqlplus scott/tiger

SQL*Plus: Release 12.2.0.1.0 Production on Sat Aug 1 18:03:11 2020

Copyright © 1982, 2016, Oracle. All rights reserved.

Last Successful login time: Sat Aug 01 2020 18:01:27 +08:00

Connected to:
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production

SCOTT@PROD>

你可能感兴趣的:(oracle,oracle)