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

From Libopedia
Jump to navigation Jump to search
(Created page with "<center> '''Back to Embargo Systems''' </center>")
 
m
Line 2: Line 2:
 
  '''[[SUNScholar/Embargo Systems|Back to Embargo Systems]]'''
 
  '''[[SUNScholar/Embargo Systems|Back to Embargo Systems]]'''
 
</center>
 
</center>
 +
Please refer to: https://groups.google.com/forum/#!topic/dspace-tech/VyzAKZqc4m8
 +
===For DSpace => 3.X===
 +
Connect to the database and then execute the following SQL query;
 +
<pre>
 +
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;
 +
</pre>
 +
 +
===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);

Revision as of 10:41, 5 May 2016

Back to Embargo Systems

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

For DSpace => 3.X

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);