[dspace-tech] Tracking Data entry logs

2024-08-28 Thread Sylvester Chikoti
Hi all, I am struggling to know how may items have been submitted into dspace and by who for a certain period of time. How can i achieve this in dspace 7.6? Thanks -- All messages to this mailing list should adhere to the Code of Conduct: https://www.lyrasis.org/about/Pages/Code-of-Conduct.as

[dspace-tech] Re: "Tilted" Element in a Relationship

2024-08-28 Thread petersu...@gmail.com
Hi Peter, It's to help with performance when related entities might have many more entities on one side of the relationship than the other. This pull request has more information: https://github.com/DSpace/DSpace/pull/3134 Kind regards, Peter On Tuesday 27 August 2024 at 21:59:33 UTC+1 Peter

[dspace-tech] Re: "Tilted" Element in a Relationship

2024-08-28 Thread Peter
Ah, thanks! środa, 28 sierpnia 2024 o 09:30:33 UTC+1 petersu...@gmail.com napisał(a): > Hi Peter, > > It's to help with performance when related entities might have many more > entities on one side of the relationship than the other. This pull request > has more information: https://github.com/

[dspace-tech] Implementing ARKs-PIDs in DSpace 8.0

2024-08-28 Thread Femi Ogundele
Dear all, I am new to ARKs and DSpace 8.0. We are implementing ARKs as our PIDs in aggregating repository to harvest from member institutional repositories. We as NREN kindly request the guide from those who have used this approach or wikis of implementing ARKs as alternate ID's scheme in DSpa

[dspace-tech] Editing Items With Multiple Relationships Between Two Entities

2024-08-28 Thread Peter
Hello, Suppose I want to establish multiple relationships between two entity types as follows: Entities: - Publication - Person Relationships: - isAuthorOfPublication - isEditorOfPublication - isAdvisorOfPublication I set up the entities/relationships configuration like this:

[dspace-tech] **LAST CALL** REGISTER NOW - LIS Bibliometrics Conference 2024

2024-08-28 Thread Behrooz Rasuli
Dear all, This is the last call for registrations to the 2024 LIS-Bibliometrics conference. This one-day event is being held at the University of Brighton on 12th September 2024 and is open to everyone. The conference is free to attend but there are a limited number of places so please sig

RE: [dspace-tech] Tracking Data entry logs

2024-08-28 Thread Fitchett, Deborah
You could query the database if you’re up for some fun with SQL and regular expressions. We do queries like: select count(*) from item,metadatavalue where item.owning_collection = 'ec3f9cb5-3508-469a-ad29-77f0d15374f8' and item.uuid = metadatavalue.dspace_object_id and metadata_field_id = 11 an