JIRA's SCHEMEPERMISSIONS table consists of the following columns.
ID, SCHEME, PERMISSION, PERM_TYPE, PERM_PARAMETER
To where should I join PERMISSION column?
I couldn't find any table containing the set of permission types.
Thanks!
--
Shaakunthala
You can use this query (PostgreSQL):
SELECT PS.name AS PermissionSchemeName,SP.perm_parameter AS GroupName, SP.permission_key AS Permission
FROM schemepermissions SP
INNER JOIN permissionscheme PS ON SP.scheme = PS.id
ORDER BY 1, 2, 3;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
These are hardcoded constants within the JIRA codebase (see https://docs.atlassian.com/jira/latest/com/atlassian/jira/permission/Permission.html for Javadoc details of the `Permission` ENUM). There is a full list here: https://docs.atlassian.com/jira/latest/constant-values.html#com.atlassian.jira.security.Permissions.ADMINISTER
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey there, Sameera.
Perhaps you can check on the following documentation. You might be able to find what you are looking for:
https://confluence.atlassian.com/display/JIRACOM/Example+SQL+queries+for+JIRA
Warm regards,
Danial
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Looking at the following Javadoc, I think this is not something we can query using SQL.
http://docs.atlassian.com/jira/latest/com/atlassian/jira/security/Permissions.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I forgot to add a justification to what I said above.
According to the Javadoc provided, all the permission items are actually integer constants. They seem to be hardcoded into JIRA so it is not possible to retrieve that information using SQL.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.