Main Tables Views Materialized Views Indexes Constraints Triggers Procedures Functions Packages Sequences Java Sources 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_MODIFIEDDATENNONONO 
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					org_id,
	u.id						user_id,
	u.login						user_login,
	pi.first_names					user_first_name,
	pi.last_name					user_last_name,
	u.modified					user_modified,
    	(	select	count(server_id)
		from	rhnUserServerPerms sp
		where	sp.user_id = u.id)
							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))
							server_group_count,
	(	select	nvl(utcv.names, '(normal user)')
		from	rhnUserTypeCommaView utcv
		where	utcv.user_id = u.id)
							role_names
from	web_user_personal_info pi,
	web_contact u
where
	u.id = pi.web_user_id