Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagesql
create tablespace uptime_data logging
datafile '/u01/app/oracle/oradata/uptime/uptime_data' size 10000m
blocksize 8192
extent management local uniform size 256k
segment space management auto
online;

create user uptime identified by password default
tablespace uptime_data;

grant connect to uptime; 
grant create session to uptime;
grant create table to uptime;
grant create sequence to uptime;
grant create procedure to uptime;
grant create synonym to uptime;
grant create view to uptime;

alter user uptime quota 10000m on uptime_data;

 

Also set up the following permissions, which are sufficient for Uptime Infrastructure Monitor to create the Uptime Infrastructure Monitor data structure and continue with standard operations:

...

  • Connect

 
grant unlimited tablespace to uptime;

 

...

Step 2 - Configuring Uptime Infrastructure Monitor

...