Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

view: cs_groups  (refreshed 2012-05-1124)

Code Block
sql
sql
SELECT
 CAST(p.objectPackageID AS VARCHAR) groupID,
 p.name title,
 p.notes scopeNote,
 (CASE WHEN u.MTB_ConstituentID = -1 THEN NULL ELSE u.MTB_ConstituentID END) owner,
 p.entereddate dateCreated
FROM
 ObjectPackages p
 LEFT OUTER JOIN Users u ON p.owner = u.login
UNION ALL
SELECT
  'bur' + CAST(o.objectID AS VARCHAR) groupID,
  'Burial lot ' + o.objectNumber title,
  null scopeNote,
  null7252 owner,
  o.entereddate dateCreated
FROM
 Objects o
WHERE
   o.IsTemplate = 0 and o.IsVirtual=1 and o.DepartmentID = 34
 ;

notes

  • 7252 is the ConstituentID of "PAHMA-NAGPRA staff"
  • "global" field does not need to be imported, per Michael (1/12/12)
  • Capture burial lots as groups (Object table, isTemplate=0, isVirtual=1 & DepartmentID=34) per Michael's email (5/10/12)

...