[Dspace-tech] Exporting/importing the PostgreSQL database?

2009-03-19 Thread Stan Orlov
Greetings! I have DSpace running on a Windows XP machine and am migrating it to a Windows 2003 server with the same structure. Installation went smoothly, jspui is accessible, but I can't properly transfer the PostgreSQL database. I tried to dump it using command line, backup using pgAdmin III,

Re: [Dspace-tech] Exporting/importing the PostgreSQL database?

2009-03-19 Thread Stan Orlov
Forgot to mention - I am running the latest versions of DSpace (1.5.1) and PostgreSQL (8.3) on both machines. And also the latest Apache and Tomcat 6. On Thu, Mar 19, 2009 at 6:26 AM, Stan Orlov stan.or...@msvu.ca wrote: Greetings! I have DSpace running on a Windows XP machine and am

Re: [Dspace-tech] dc.relation.xxx

2009-03-19 Thread Andrew Marlow
On Thu, Mar 19, 2009 at 3:38 AM, Lyn Amery lyn.am...@sro.wa.gov.au wrote: I'm not overly familiar with metadata schemas and their possible uses. I'm wondering if I might make use of the relation fields, e.g. dc.relation.ispartof for the following situation. We collect archival material

Re: [Dspace-tech] Embargo

2009-03-19 Thread Sean Carte
2009/3/19 Elliot Metsger emets...@jhu.edu: The updated documentation at http://wiki.dspace.org/index.php/User:Emetsger:Embargo:Downloads_here should fix this.  I inserted a new step 4, where you run a 'mvn clean install' prior to step 5 (cd dspace mvn package assembly:assembly). After

[Dspace-tech] google summer of code 2009, DSpace, CML and jmol

2009-03-19 Thread Andrew Marlow
Can anyone edit.change the DSpace google summer of code page at http://wiki.dspace.org/index.php/Summer_of_Code_Ideas? What is the procedure for adding new ideas? I would like to see an entry for adding more support for CML (Chemical Markup Language). Projects such as eCrystals use jmol embedded

Re: [Dspace-tech] Exporting/importing the PostgreSQL database?

2009-03-19 Thread Allen Lam
The db schema is changed while dspace version is changed. You errors may be caused by version mismatch between dspace and db. I suggest you re-create the old version db on the new machine, then run the upgrade scripts provided by dspace to upgrade the db schema upto 1.5.1 Hope this helps.

Re: [Dspace-tech] Embargo

2009-03-19 Thread Elliot Metsger
Sean Carte wrote: Sorry if I'm being dense, but I still have the same problem: 2009-03-19 11:09:15,241 ERROR org.dspace.app.webui.servlet.SubmissionController @ Error loading step class'org.dspace.submit.step.EmbargoProcessor': java.lang.ClassNotFoundException:

Re: [Dspace-tech] Exporting/importing the PostgreSQL database?

2009-03-19 Thread Stan Orlov
Hi Allen, Thank you for the suggestion. I just would like to confirm whether it applies to the situation where dspace version hasn't changed? I have dspace 1.5.1 on both machines. Postgres versions are slightly different (8.3.5-1 on the old and 8.3.6-2 on the new), but it probably isn't a

Re: [Dspace-tech] Exporting/importing the PostgreSQL database?

2009-03-19 Thread Stan Orlov
Another crisis averted :) I tried to export the database via Navicat's MS Access format and it imported vi Navicat on the new box just fine (although I'll have to re-assign primary keys, apparently). Before, I was trying to export in a text delimited format, but it would mess up field lengths

[Dspace-tech] Incorrect DSpace subscription links

2009-03-19 Thread Brett, Hamish
Hi we are using version 1.5.1 and since using this version we have had issues with the subscription emails. The embedded links are not clickable as they have the prefix ID: (see example below) ID:http://dspace-dsto.dsto.defence.gov.au/dspace/handle/dsto/6711 this does not occur in other

[Dspace-tech] DSpace Foundation accepted into GSoC 2009 (Call for Projects)

2009-03-19 Thread Mark Diggory
Dear DSpace Community, YOU CAN GET $4500 FOR DOING THAT?!!! The DSpace Foundation has registered with Google to participate in this years Google Summer of Code internship program (http://code.google.com/soc). The DSpace community participated the last two years, completing 4-5 successful and

Re: [Dspace-tech] Exporting/importing the PostgreSQL database?

2009-03-19 Thread Allen Lam
The all-time trusted tool for backup and restore is postgres' own pg_dump and pg_restore To see the command options: pg_dump --help pg_restore --help It can be tricky to use because you have to put into a good combination of flags. Some flags you may wish to use with pg_dump is -b and -Fc