forked from ckan/ckan
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Summary and Statistics for DMP #14
Labels
Milestone
Comments
Find datasets without assignment to one of the 4 groups: SELECT "Dataset Name", Organisation[1] FROM
(SELECT package.title as "Dataset Name", array_agg(g.title) as Organisation FROM package
JOIN MEMBER m ON m.table_id = package.id AND m.state = 'active'
LEFT JOIN "group" as g ON g.id = m.group_id AND g.state = 'active'
--and g.is_organization = true
GROUP BY package.title HAVING COUNT(g.id) = 1) as foo
|
p-a-s-c-a-l
modified the milestones:
D7.9 Data Management Plan v2,
D7.10 Data Management Plan v3
Jun 18, 2019
p-a-s-c-a-l
added
duplicate
This issue or pull request already exists
on-hold
Issue is on-hold
and removed
duplicate
This issue or pull request already exists
labels
Jul 2, 2019
|
Check Integrity for #32 and clarity-h2020/data-management-plan#1 |
This comment has been minimized.
This comment has been minimized.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Query the CKAN Database and extract some summary and overview tables from inclusion in the DMP deliverable document. See also clarity-h2020/docker-pgadmin#3
The text was updated successfully, but these errors were encountered: