Re: [Dspace-tech] Moving items to new collection

2008-03-06 Thread Stuart Lewis
This facility is in the upcoming 1.5 release, in the JSP user interface. The option appears to an administrator when editing an item. On 5/3/08 16:31, Mika Stenberg [EMAIL PROTECTED] wrote: Ability to move items from collection to another should be added to the WebUI. Has this been considered

Re: [Dspace-tech] Moving items to new collection

2008-03-05 Thread Tim Donohue
David, David, Similar to what George mentioned, I've always done this at the database level. I use the same basic SQL query (mentioned by George): update collection2item set collection_id=new collection's id where item_id=item's id; Or, if you are moving *all* the items in one collection to

Re: [Dspace-tech] Moving items to new collection

2008-03-05 Thread James Rutherford
On Wed, Mar 05, 2008 at 04:31:16PM +, Mika Stenberg wrote: Ability to move items from collection to another should be added to the WebUI. Has this been considered in the future releases? The functionality of CommunityFiliator (a CLI app to move communities around) has been extended to be

Re: [Dspace-tech] Moving items to new collection

2008-03-05 Thread Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
Also don't forget to update owning_collection in the item table. Sue -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mika Stenberg Sent: Wednesday, March 05, 2008 11:31 AM To: dspace-tech@lists.sourceforge.net Subject: Re: [Dspace-tech] Moving items

[Dspace-tech] Moving items to new collection

2008-03-04 Thread David Reynolds
Dear colleagues, I want to move items from one collection to another in order to delete the old collection but still retain the handles on the items. One colleague suggested the following, but he stressed that he had not tried it before: I would try exporting the item ( you'll get the handle

Re: [Dspace-tech] Moving items to new collection

2008-03-04 Thread George Kozak
David: I would do this in SQL. Here is an example of the command I use: update collection2item set collection_id=new collection's id where item_id=item's id; Then I do the following: update item set owning_collection=new collection's id where item_id=item's id; OR run index_all after