Skip to content

Commit

Permalink
Add new table SASH_TOP10
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertoFro committed Feb 9, 2012
1 parent 61a24c6 commit 0339b4c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions sash_dev/repo_schema.sql
Expand Up @@ -19,6 +19,7 @@
--v2.3 Changes: new field in SASH table OSUSER -- AlbertoFro
-- new table SASH_OBJ_PLUS -- AlbertoFro
-- new field in SASH_EVENT_NAMES table event_id -- AlbertoFro
-- new table SASH_TOP10 -- AlbertoFro


set term off
Expand Down Expand Up @@ -166,6 +167,26 @@ create or replace view sash as select * from sash1;
create or replace view sash_all as select * from sash1;



create table sash_top10 (
dbid number,
date_snap date,
sql_id varchar2(13),
cpu number,
user_i_o number,
system_i_o number,
administration number,
other number,
configuration number,
application number,
concurrency number,
network number,
total number

);

CREATE UNIQUE INDEX "SASH"."SASH_GET_TOP10_I" ON "SASH"."SASH_TOP10" ("SQL_ID", "DATE_SNAP") ;

create table sash_obj_plus (
DBID NUMBER,
table_name varchar2(30),
Expand Down

0 comments on commit 0339b4c

Please sign in to comment.