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

RHN_CONTACT_MONITORING

DDL script

Columns

NameTypeNullableInsertableUpdatableDeletableComment
RECIDNUMBER(38)NNONONO 
CUSTOMER_IDNUMBER(38)NNONONO 
CONTACT_LAST_NAMEVARCHAR2(128)NYESYESYES 
CONTACT_FIRST_NAMEVARCHAR2(128)NYESYESYES 
EMAIL_ADDRESSVARCHAR2(4000)YNONONO 
USERNAMEVARCHAR2(64)NNONONO 
PASSWORDVARCHAR2(38)NNONONO 
SCHEDULE_IDNUMBER(38)YNONONO 
PREFERRED_TIME_ZONECHAR(3)YNONONO 

Query:

Legend: comment string keyword reserved word operator
select	u.id			as recid,
	u.org_id		as customer_id,
	wupi.last_name		as contact_last_name,
	wupi.first_names	as contact_first_name,
	rhn_user.find_mailable_address(u.id)
				as email_address,
	u.login			as username,
	u.password		as password,
	1			as schedule_id,
	'GMT'			as preferred_time_zone
from
	web_user_personal_info wupi,
	web_contact u
where	u.id = wupi.web_user_id
	--  and some logic here to check org id for entitlements?