Rem Rem Copyright (c) 2000 by Oracle Corporation Rem ---------------------------------------------------------------------------- -- SEQUENCES ---------------------------------------------------------------------------- create sequence wb_rt_platform_properties_seq start with 1 increment by 1 order; ---------------------------------------------------------------------------- -- PLATFORM PROPERTIES TABLES ---------------------------------------------------------------------------- create table wb_rt_platform_properties ( property_id number(22) not null, property_path varchar2(512) not null, property_value clob null, is_mutable number(1) not null, constraint pp_pk primary key (property_id) using index tablespace %tndex, constraint pp_uk unique (property_path) using index tablespace %tndex );