Difference between revisions of "SUNScholar/Embargo Systems/Reports"

From Libopedia
Jump to navigation Jump to search
m
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
 
==Resource Policies Report==
 
==Resource Policies Report==
 
*https://gist.github.com/kardeiz/c8ab990614dbbcb31213
 
*https://gist.github.com/kardeiz/c8ab990614dbbcb31213
Please refer to: https://groups.google.com/forum/#!topic/dspace-tech/VyzAKZqc4m8
+
 
 
==Querying the database directly==
 
==Querying the database directly==
 
===For DSpace => 3.X===
 
===For DSpace => 3.X===
 +
Please refer to: https://groups.google.com/forum/#!topic/dspace-tech/VyzAKZqc4m8
 +
 
Connect to the database and then execute the following SQL query;
 
Connect to the database and then execute the following SQL query;
 
<pre>
 
<pre>
Line 26: Line 28:
  
 
  SELECT * FROM HANDLE WHERE RESOURCE_TYPE_ID = 2 AND RESOURCE_ID IN (SELECT RESOURCE_ID FROM METADATAVALUE WHERE METADATA_FIELD_ID = 81);
 
  SELECT * FROM HANDLE WHERE RESOURCE_TYPE_ID = 2 AND RESOURCE_ID IN (SELECT RESOURCE_ID FROM METADATAVALUE WHERE METADATA_FIELD_ID = 81);
 +
[[Category:Operations]]

Latest revision as of 00:31, 31 May 2016

Back to Embargo Systems

Resource Policies Report

Querying the database directly

For DSpace => 3.X

Please refer to: https://groups.google.com/forum/#!topic/dspace-tech/VyzAKZqc4m8

Connect to the database and then execute the following SQL query;

SELECT h.handle, rp.*
FROM resourcepolicy rp, bundle2bitstream b2b, item2bundle i2b, handle h
WHERE (start_date IS NOT NULL OR end_date IS NOT NULL)
AND rp.resource_type_id = 0
AND b2b.bitstream_id = rp.resource_id
AND i2b.bundle_id = b2b.bundle_id
AND i2b.item_id = h.resource_id
AND h.resource_type_id = 2;

For DSpace <= 1.X.X

Connect to the database and then execute the following SQL queries;

SELECT METADATA_FIELD_ID FROM METADATAFIELDREGISTRY WHERE ELEMENT LIKE 'embargo';

then find the item handles: (here done assuming the metadata field id is 81)

SELECT * FROM HANDLE WHERE RESOURCE_TYPE_ID = 2 AND RESOURCE_ID IN (SELECT RESOURCE_ID FROM METADATAVALUE WHERE METADATA_FIELD_ID = 81);