sysdba
, and you don't have access to the local file system, so you can't run the rdbms/admin/scott.sql
script, as you would otherwise do. Instead:- Download the demo scripts
- As master user:
- Change password of the
scott
user1:alter user scott identified by password ;
- Grant some rights to
scott
: grant connect to scott;
grant create table to scott;
grant execute any type to scott;
grant unlimited tablespace to scott;
grant create any trigger to scott;
- Connect as
scott/password
- Run SQL in
scott.sql
1 The
scott
user exists by default in Oracle RDS instances, but I am not sure what the password is out of the box. (It isn't tiger
.)