To run the installation script, you must use SQL*Plus and connect as a user with SYSDBA privilege:
SQL> conn / as sysdba
SQL> @?/rdbms/admin/spcreate.sqlFor better performance analysis, set the initialization parameter TIMED_STATISTICS to true:
SQL> alter system set TIMED_STATISTICS=true;The simplest interactive way to take a snapshot is to login to SQL*Plus as the PERFSTAT user and run the procedure STATSPACK.SNAP:
SQL> conn perfstat/perfstat
SQL> exec statspack.snapCheck the list of snapshots:
SQL> select snap_id, snap_time from stats$snapshot;To examine the change in instancewide statistics between two time periods, the SPREPORT.SQL file is run while connected to the PERFSTAT user:
SQL> conn perfstat/perfstat
SQL> @?/rdbms/admin/spreport.sqlSQL> conn perfstat/perfstat
SQL> @?/rdbms/admin/sppurge.sql
...
Enter value for losnapid: 1
Using 1 for lower bound.
...
Enter value for hisnapid: 3
Using 3 for upper bound.
...
Deleting snapshots 1 - 3.
...SQL> conn PERFSTAT/PERFSTAT
SQL> @?/rdbms/admin/sptrunc.sql