Hi Elvi,
this suggests that the error you're getting is related to item accession
date.
https://github.com/DSpace/DSpace/blob/dspace-1_8_x/dspace-xmlui/dspace-xmlui-api/src/main/java/org/dspace/app/xmlui/aspect/submission/Submissions.java#L398
You're asking how to migrate the workflow items, which are probably broken.
It's clear that you have to find a way to fix them first, just transferring
them won't help. In other words, you can't expect to fix items by just
transferring them.
If I understand correctly what the error is, this should find the items
with wrong dates. If you fix them, the submission workflow should work
again. The correct format should look like this "2012-11-30T12:14:02Z".
SELECT * FROM metadatavalue,metadatafieldregistry WHERE
metadatavalue.metadata_field_id =
metadatafieldregistry.metadata_field_idAND element = 'date' AND
qualifier = 'accessioned'AND CHAR_LENGTH(text_value) < 10;
When you get the submission workflow working, you can migrate the database
using pg_dump.
Regards,
~~helix84
Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette
------------------------------------------------------------------------------
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
_______________________________________________
DSpace-tech mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette