On Thu, Aug 2, 2012 at 4:20 PM, Carlos Walter Blandon Alvarez <[email protected]> wrote: > I offer my apologies for the translation, but I do not know what happened to > the previous post, I had corrected the English texts are in DSPACE.
I'm sorry, I didn't understand what you just said. > 2012-08-02 09:06:08,936 ERROR org.dspace.submit.step.CompleteStep @ Caught > exception in submission step: > java.sql.SQLException: bad_dublin_core schema=dc, description provenance This are the relevant source lines: https://github.com/DSpace/DSpace/blob/dspace-1_8_x/dspace-api/src/main/java/org/dspace/content/Item.java#L1564 It looks like you don't have the dc.description.provenance field defined for some reason. This is a standard field used by DSpace to store provenance data and should not be remove. Perhaps you removed it accidentally? 1) Check if it's really missing: SELECT * FROM metadatafieldregistry WHERE qualifier = 'provenance' 2) If it's missing, re-create it: INSERT INTO "metadatafieldregistry" ("metadata_field_id", "metadata_schema_id", "element", "qualifier", "scope_note") VALUES (28, 1, 'description', 'provenance', 'The history of custody of the item since its creation, including any changes successive custodians made to it.'); Let us know whether it helped. Regards, ~~helix84 ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ DSpace-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-tech

