Hola Miguel,

as items belong to collections, not communities you can move items from 
one collection to another. In the UI you log in as admin, navigate to 
your item, click on edit and then there is a button move item.
There is a patch for moving whole collections on sourceforge, but I 
haven't tried it yet 
http://sourceforge.net/tracker/index.php?func=detail&aid=1741872&group_id=19984&atid=319984

You might also perform this straight on the database level. Make sure 
you got a backup before you work on the db directly.

In order to move an item you got to execute:
update item set owning_collection=NewCollectionID where item_id=ItemID;
update collection2item set collection_id=NewCollectionID where 
collection_id=OldCollectionID and item_id=ItemID;

In order to move a complete collection from one community to another, 
execute:
update community2collection set community_id=NewCommunityID where 
community_id=OldCommunityIDE and collection_id=IDOfCollectionToMove;

then run [dspace]/bin/index-update (DSpace 1.5 or higher) or 
[dspace]/bin/index-all (DSpace 1.4.2 or lower)

Hope that helps

Claudia Jürgen




Miguel Pizarro schrieb:
> Dear friends:
> 
>  
> 
> I need drop ítems from the community, and reload into other community, can
> you help me?
> 
>  
> 
> Best regards,
> 
>  
> 
> Miguel Pizarro
> 
> Soporte Tecnológico
> 
> Alerta al Conocimiento
> 
> Santiago, Chile.
> 
> 
> 
> 
> ------------------------------------------------------------------------
> 
> -------------------------------------------------------------------------
> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
> Build the coolest Linux based applications with Moblin SDK & win great prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> 
> 
> ------------------------------------------------------------------------
> 
> _______________________________________________
> DSpace-tech mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/dspace-tech

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
DSpace-tech mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/dspace-tech

Reply via email to