Skip to content
Prev Previous commit
Next Next commit
security update
  • Loading branch information
nigelbayliss committed Jun 18, 2020
commit c83d9ad29a1fedfdb67bc22217824180af615561
7 changes: 5 additions & 2 deletions optimizer/faster_stats/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@


First, create a user called STEST by adapting the the user.sql script to use an appropriate tablespace (which needs to have about 1.5GB free).
First, create a user called STEST.

EDIT user.sql script to use an appropriate tablespace and password (which needs to have about 1.5GB free).
EDIT cusr.sql to set the password/connect string

Two 'connect' scripts are available:
cadm.sql <-- Connects to SYSDBA account
cusr.sql <-- Connects to the STEST user account
cusr.sql <-- Connects to the STEST user account - EDIT THIS TO SET YOUR PASSWORD
You can edit these to suit you system, particularly if you are using a multitenant environment.

Create tables:
Expand Down
2 changes: 1 addition & 1 deletion optimizer/faster_stats/cusr.sql
Original file line number Diff line number Diff line change
@@ -1 +1 @@
connect stest/stest
connect stest/<put_your_password_here>
2 changes: 1 addition & 1 deletion optimizer/faster_stats/user.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create user stest identified by stest;
create user stest identified by <put_your_password_here>;
grant dba to stest;
grant sysdba to stest;
alter user stest default tablespace big;