From: Juan P. <BI...@ge...> - 2004-07-16 13:45:49
|
Just a heads-up to anyone building GUS from the tutorials listed at gusdb.org. (Specifically in the VBIdoc.pdf). If you use the 'create_tables.sql' that is given as an example you must add the tablespace creation lines as specified below in order to build GUS appropriately. Hopefully this addition is enough to acknowledge create tablespace gus_app datafile '/oracle/gus/dynmgus_app.dbf' size 200M autoextend on next 10M maxsize 5000M default storage (initial 4M next 1M pctincrease 0); create tablespace gus_app_idx datafile '/oracle/gus/dynmgus_app_idx.dbf' size 200M autoextend on next 10M maxsize 5000M default storage (initial 4M next 1M pctincrease 0); |