Skip to content

Instantly share code, notes, and snippets.

@stompro
Created July 29, 2016 14:05
Show Gist options
  • Save stompro/c36050892d14c6d9fb38cb4e20bc7451 to your computer and use it in GitHub Desktop.
Save stompro/c36050892d14c6d9fb38cb4e20bc7451 to your computer and use it in GitHub Desktop.
Delete Copies Evergreen
-- Magazines to delete
select acp.barcode, acp.create_date, aou.shortname
from asset.copy acp
join actor.org_unit aou on aou.id=acp.circ_lib
where acp.status=13
and acp.circ_modifier='Magazine'
and acp.deleted=false
order by acp.circ_lib
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment