October 2016
Beginner
450 pages
7h 59m
English
The cwd_user table is used to store a user in the system. Let's check the structure of this table.
Run the following query:
desc cwd_user;
The output of the query is as follows:

One of the main responsibilities of JIRA administrators is user management. Let's say you want to find the list of inactive users, along with their directory information. In big JIRA instances, it may be possible that there are users in JIRA's internal directory, as well as users from corporate LDAP.
The following query will return the list of inactive users in JIRA:
SELECT u.user_name,u.first_name,u.last_name,u.email_address,d.directory_name ...Read now
Unlock full access