@@ -28,7 +28,7 @@ WHENEVER SQLERROR continue
28
28
29
29
revoke connect, resource from &schema_owner.;
30
30
31
- grant quota unlimited to &schema_owner. ;
31
+ alter user &schema_owner. quota unlimited on USERS ;
32
32
grant create session to &schema_owner.;
33
33
grant create type to &schema_owner.;
34
34
grant create sequence to &schema_owner.;
@@ -80,12 +80,19 @@ drop table wt_test_data;
80
80
revoke select , insert, delete on plsql_profiler_runs from public;
81
81
revoke select , insert, delete on plsql_profiler_units from public;
82
82
revoke select , insert, delete on plsql_profiler_data from public;
83
- revoke insert on wt_test_runs from public;
84
83
revoke insert on wt_results from public;
85
84
revoke insert on wt_dbout_profiles from public;
86
85
revoke update on wt_dbout_profiles from public;
87
86
87
+ -- Note: This table was included with the V1.0 source
88
+ -- but was omitted from the V1.0 installation script.
88
89
@../ ../ wt_version .tab
90
+ delete from wt_version where action = ' INSTALL' and text = ' 1.0' ;
91
+ insert into wt_version (install_dtm, action, text )
92
+ values (sysdate , ' INSTALL' , ' 1.0' );
93
+ insert into wt_version (install_dtm, action, text )
94
+ values (sysdate , ' UPGRADE' , ' 1.1.0' );
95
+
89
96
@../ ../ wt_testcase_stats .tab
90
97
@../ ../ wt_test_run_stats .tab
91
98
@../ ../ wt_self_test .tab
@@ -101,10 +108,10 @@ comment on column wt_results.interval_msecs is 'Interval time in milliseonds sin
101
108
alter table wt_dbout_profiles rename column total_time to total_usecs;
102
109
alter table wt_dbout_profiles rename column min_time to min_usecs;
103
110
alter table wt_dbout_profiles rename column max_time to max_usecs;
104
- comment on column wt_dbout_profiles.status is ' Executed/NotExecuted/Excluded/Annotated /Unknown Status from the Profiler' ;
105
- comment on column wt_dbout_profiles.total_time is ' Total time spent executing this line.' ;
106
- comment on column wt_dbout_profiles.min_time is ' Minimum execution time for this line.' ;
107
- comment on column wt_dbout_profiles.max_time is ' Maximum execution time for this line.' ;
111
+ comment on column wt_dbout_profiles.status is ' Executed/NotExecuted/Excluded/Ignored /Unknown Status from the Profiler' ;
112
+ comment on column wt_dbout_profiles.total_usecs is ' Total time in microseconds spent executing this line.' ;
113
+ comment on column wt_dbout_profiles.min_usecs is ' Minimum execution time in microseconds for this line.' ;
114
+ comment on column wt_dbout_profiles.max_usecs is ' Maximum execution time in microseconds for this line.' ;
108
115
alter table wt_dbout_profiles drop constraint wt_dbout_profiles_ck1;
109
116
update wt_dbout_profiles set status = ' IGNR' where status = ' ANNO' ;
110
117
alter table wt_dbout_profiles add constraint wt_dbout_profiles_ck1 check (status in (' EXEC' ,' NOTX' ,' EXCL' ,' IGNR' ,' UNKN' ));
0 commit comments