Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Multiple datasets in one dataset
On Mon, 15 Oct 2007 02:26:04 -0700, roman.morokutti_at_googlemail.com
wrote:
<snip>
>So, this would be a process flow where everything went
>fine. I could make a query where I put all the lines into
>one. But there are times when a piece crashes inside the
>machine. Thus I am never sure how many process stages have
>been passed and how many datasets are written though.
>
>The problem is to define a query where I get all in one
>line, regardless of how many stages were passed respectively
>how many lines were written.
>
>Regards
>Roman
OK, now it is beginning to make sense. Let me see if i understand this.
CREATE TABLE FOO
( "WP" VARCHAR2(10 BYTE), "VALUE_GROUP" NUMBER(4,0), "CURR_MS" NUMBER(38,0), "VALUE_1" NUMBER(13,3), "VALUE_2" NUMBER(13,3), "VALUE_3" NUMBER(13,3), "VALUE_4" NUMBER(13,3), "VALUE_5" NUMBER(13,3), "VALUE_6" NUMBER(13,3), "VALUE_7" NUMBER(13,3), "VALUE_8" NUMBER(13,3), "VALUE_9" NUMBER(13,3), "VALUE_10" NUMBER(13,3)
If that is the case, the solution would be to change the INNER JOIN to an OUTER JOIN. That would not restrict the data returned to having all stages with data.
B. Received on Mon Oct 15 2007 - 09:10:04 CDT
![]() |
![]() |