Hi, the database schema is create automatically at startup through the InstallParticipant.
In your case you need to create the actual database and user for postgres (since you decided to use postgres). Instructions about this can be found in the PostgreSQL manual and typically require you to use the 'createuser' and 'createdb' commands. You can however also decide to use one of the supported embedded Java database options (H2 or Derby), and then everything just happens automatically as the database is created on connect. Hope this helps, Geert On 03 May 2008, at 00:50, M Rassbach wrote: > > Normally I try and pull down archive of a mialing list and slog > through that > for my understanding. It is not obvious to me where monthly > or yearly archives of this (and the other RIFE lists) are on the > Internet. > > I did find Nabble and that got me: > http://www.nabble.com/Where-can-we-find-the-databaseschema-for-elephant-and-blablalist--tp10843234s9330p10843234.html > > But it did not answer my question - what is the schema for blablalist? > > [java] at java.lang.Thread.run(Thread.java:595) > [java] Caused by: org.postgresql.util.PSQLException: FATAL: role > "blablalist" does not exist > (via ant run) > > psql template1 > \l > List of databases > Name | Owner | Encoding > -------------+---------------+---------- > blablalist | marc | UTF8 > blablallist | pgsql | UTF8 > > > So I have the database - and I know it has no tables. Where do I > go to find the SQL > commands to create the table(s) for blablalist? > > > -- Geert Bevin Terracotta - http://www.terracotta.org Uwyn "Use what you need" - http://uwyn.com RIFE Java application framework - http://rifers.org Music and words - http://gbevin.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~---
