Main Tables Views Materialized Views Indexes Constraints Triggers Procedures Functions Packages Sequences Java Sources Jobs Sanity Check Index DDL scrips
Description Columns Query Constraints Triggers

RHNUSERSINORGOVERVIEW

DDL script

Columns

NameTypeNullableInsertableUpdatableDeletableComment
ORG_IDNUMBER(38)NNONONO 
USER_IDNUMBER(38)NNONONO 
USER_LOGINVARCHAR2(64)NNONONO 
USER_FIRST_NAMEVARCHAR2(128)NYESYESYES 
USER_LAST_NAMEVARCHAR2(128)NYESYESYES 
USER_MODIFIEDTIMESTAMP(6) WITH LOCAL TIME ZONENNONONO 
SERVER_COUNTNUMBER(38)YNONONO 
SERVER_GROUP_COUNTNUMBER(38)YNONONO 
ROLE_NAMESVARCHAR2(4000)YNONONO 

Query:

Legend: comment string keyword reserved word operator
select
	u.org_id					as org_id,
	u.id						as user_id,
	u.login						as user_login,
	pi.first_names					as user_first_name,
	pi.last_name					as user_last_name,
	u.modified					as user_modified,
    	(	select	count(server_id)
		from	rhnUserServerPerms sp
		where	sp.user_id = u.id)
							as server_count,
	(	select	count(server_group_id)
		from	rhnUserManagedServerGroups umsg
		where	umsg.user_id = u.id and exists (
			select	1
			from	rhnVisibleServerGroup sg
			where	sg.id = umsg.server_group_id))
							as server_group_count,
	coalesce(rhn_user.role_names(u.id), '(normal user)') as role_names
from	web_user_personal_info pi,
	web_contact u
where
	u.id = pi.web_user_id