Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Ideas to workaround view merge being disabled.
Would using a function to return DECODE(TD.description, NULL, SC.DESCRIPTION, TD.DESCRIPTION) achieve what you are after? (assuming you can do that in 8.1.7, I am not sure)
-----Original Message-----
Sent: Thursday, January 08, 2004 11:59 AM
To: Multiple recipients of list ORACLE-L
Hey all,
So, there I am on 8.1.7.4.0 creating some SQL suitable for a view:
SELECT
TS.username, TS.reportdate, TS.hours AS hours,
TS.productline, ST.SUBTASKID "DEFECTID", ST.DESCRIPTION "DEFECT_DESCRIPTION"
T1 TS, T2 ST, T3 TD, TEAM ,
TS.TASKID = TD.TASKID (+) AND TS.TEAMID = TEAM.TEAMID AND TS.WORKORDERNO = SC.WORKORDERNO (+)
**************************************************************************************4
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services ---------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Thu Jan 08 2004 - 11:09:53 CST
![]() |
![]() |