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			recid,
	u.org_id		customer_id,
	wupi.last_name		contact_last_name,
	wupi.first_names	contact_first_name,
	rhn_user.find_mailable_address(u.id)
				email_address,
	u.login			username,
	u.password		password,
	1			schedule_id,
	'GMT'			preferred_time_zone
from
	web_user_personal_info wupi,
	web_contact u
where	1=1
	and u.id = wupi.web_user_id