User Tools

Site Tools


oracle

Oracle 11g on Lab computers

The credentials are:

Username: sys or system
Password: Oracle
for example, at command prompt:

sqlplus sys/Oracle as sysdba
sqlplus system/Oracle

Student Account Script:

studentaccountscript.sql
Create user Student 
IDENTIFIED by abc123
temporary tablespace temp 
default tablespace users;

grant connect, resource to Student;

alter user Student quota unlimited on users;
oracle.txt · Last modified: 2020/02/24 23:44 by straussk