Negative on that.

First, there was a foreign key constraint in table metadatavalue that I had
to take care of. Afterwards, when I was done, all the items were displayed
as untitled in DSpace.

On Sat, Jun 9, 2012 at 2:37 PM, helix84 <[email protected]> wrote:

> Hi Saqib,
>
> there's no way to do that from configuration, but you can change the
> order of fields in the database. The order probably isn't guaranteed,
> but it works for me. First, find out the IDs of fields you want to
> change:
> SELECT * FROM metadatafieldregistry;
>
> Then give them new IDs in the order you want:
> UPDATE metadatafieldregistry SET metadata_field_id=101  WHERE
> metadata_field_id=64;
> UPDATE metadatafieldregistry SET metadata_field_id=102  WHERE
> metadata_field_id=3;
> UPDATE metadatafieldregistry SET metadata_field_id=103  WHERE
> metadata_field_id=42;
> ...
>
>
> Regards,
> ~~helix84
>



-- 
Muhammad Saqib Ilyas
PhD Student, Computer Science and Engineering
Lahore University of Management Sciences
------------------------------------------------------------------------------
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

Reply via email to