Put all values in one line

Hi, people.
I have the situacion of result set of a query
cod val time1 time2 time3
1 a 18:30 null null
1 a null 20:30 null
1 a null null 21:40
2 b 10:27 null null
understand 'null' like empty spaces ou null
How do I do to show record 1 i one line , i need this way
1 a 18:30 20:30 21:40
2 b 10:27
thanks....
Edited by: claudioaragao on 07/05/2012 09:36
Edited by: claudioaragao on 07/05/2012 09:38

ok...this is the query
SELECT PEDV_ID_PLANTA
, DT_REGISTRO
, NFCA_ID_PED
, PEDV_ID_PREVOL
, PEDV_ID_ONDA
, NFCA_ID_NOTA
, NFCA_SERIE
, NFCA_VL_TOTAL_NOTA
, NFCA_QT_VOLUMES
, EMISSAO
, INICIO
, ACEITA
, NFCA_USUARIO
, USUA_NOME
FROM (
SELECT ROWNUM CUR,
PEDV_ID_PLANTA,
TO_CHAR(PEDV_DT_REGISTRO,'DD/MM/RRRR') DT_REGISTRO,
NFCA_ID_PED,
PEDV_ID_PREVOL,
PEDV_ID_ONDA,
NFCA_ID_NOTA,
NFCA_SERIE,
NFCA_VL_TOTAL_NOTA,
NFCA_QT_VOLUMES,
'E' STATUS,
DECODE(STATUS,NULL,NULL,'E',TO_CHAR(SWTK_DT_REGISTRO,'HH24:MI:SS')) EMISSAO,
DECODE(STATUS,NULL,NULL,'I',TO_CHAR(SWTK_DT_REGISTRO,'HH24:MI:SS')) INICIO,
DECODE(STATUS,NULL,NULL,'A',TO_CHAR(SWTK_DT_REGISTRO,'HH24:MI:SS')) ACEITA,
NFCA_USUARIO,
USUA_NOME
FROM
SELECT PC.PEDV_ID_PLANTA,
PC.PEDV_DT_REGISTRO,
NC.NFCA_ID_PED,
PC.PEDV_ID_PREVOL,
PC.PEDV_ID_ONDA,
NC.NFCA_ID_NOTA,
NC.NFCA_SERIE,
NC.NFCA_VL_TOTAL_NOTA,
NC.NFCA_QT_VOLUMES,
EMIS_NOTA.SWTK_DT_REGISTRO,
'E' STATUS,
NC.NFCA_USUARIO,
US.USUA_NOME
FROM PLANTA PL,
PEDIDO_CAB PC,
FILIAL FI,
NOTA_FISCAL_CABECALHO NC,
USUARIOS US,
SW_TRACKING EMIS_NOTA
WHERE PL.PLTA_ID_PLANTA = 'PFRIO'
AND NC.NFCA_DT_EMISSAO >= DECODE('11/01/2012','NULL',NC.NFCA_DT_EMISSAO,TO_DATE('11/01/2012','DD/MM/RRRR'))
AND NC.NFCA_DT_EMISSAO <= DECODE('11/01/2012','NULL',NC.NFCA_DT_EMISSAO,TO_DATE('11/01/2012','DD/MM/RRRR'))
AND NC.NFCA_HR_EMISSAO >= DECODE('NULL','NULL',NC.NFCA_HR_EMISSAO,'NULL')
AND NC.NFCA_HR_EMISSAO <= DECODE('NULL','NULL',NC.NFCA_HR_EMISSAO,'NULL')
AND NC.NFCA_SERIE LIKE '1'
AND PC.PEDV_ID_PLANTA = PL.PLTA_ID_PLANTA
AND PC.PEDV_SITUACAO != 'C'
AND FI.FILI_CGC = PL.PLTA_ID_TERCEIRO
AND NC.NFCA_ID_CIA = FI.FILI_ID_CIA
AND NC.NFCA_ID_FILIAL = FI.FILI_ID_FILIAL
AND NC.NFCA_ID_PED = TO_NUMBER(PC.PEDV_NUM_PED_TERC)
AND NC.NFCA_SITUACAO = 'A'
AND US.USUA_ID_USUARIO = NC.NFCA_USUARIO
AND EMIS_NOTA.SWTK_ID_TRACKING = (SELECT MAX(SWTK_ID_TRACKING)
FROM SW_TRACKING
WHERE SWTK_ID_PED = PC.PEDV_ID_PED
AND SWTK_ID_EVENTO = 9)
UNION
SELECT PC.PEDV_ID_PLANTA,
PC.PEDV_DT_REGISTRO,
NC.NFCA_ID_PED,
PC.PEDV_ID_PREVOL,
PC.PEDV_ID_ONDA,
NC.NFCA_ID_NOTA,
NC.NFCA_SERIE,
NC.NFCA_VL_TOTAL_NOTA,
NC.NFCA_QT_VOLUMES,
INIC_CONF.SWTK_DT_REGISTRO,
'I' STATUS,
NC.NFCA_USUARIO,
US.USUA_NOME
FROM PLANTA PL,
PEDIDO_CAB PC,
FILIAL FI,
NOTA_FISCAL_CABECALHO NC,
USUARIOS US,
SW_TRACKING INIC_CONF
WHERE PL.PLTA_ID_PLANTA = 'PFRIO'
AND NC.NFCA_DT_EMISSAO >= DECODE('11/01/2012','NULL',NC.NFCA_DT_EMISSAO,TO_DATE('11/01/2012','DD/MM/RRRR'))
AND NC.NFCA_DT_EMISSAO <= DECODE('11/01/2012','NULL',NC.NFCA_DT_EMISSAO,TO_DATE('11/01/2012','DD/MM/RRRR'))
AND NC.NFCA_HR_EMISSAO >= DECODE('NULL','NULL',NC.NFCA_HR_EMISSAO,'NULL')
AND NC.NFCA_HR_EMISSAO <= DECODE('NULL','NULL',NC.NFCA_HR_EMISSAO,'NULL')
AND NC.NFCA_SERIE = '1'
AND PC.PEDV_ID_PLANTA = PL.PLTA_ID_PLANTA
AND PC.PEDV_SITUACAO != 'C'
AND FI.FILI_CGC = PL.PLTA_ID_TERCEIRO
AND NC.NFCA_ID_CIA = FI.FILI_ID_CIA
AND NC.NFCA_ID_FILIAL = FI.FILI_ID_FILIAL
AND NC.NFCA_ID_PED = TO_NUMBER(PC.PEDV_NUM_PED_TERC)
AND NC.NFCA_SITUACAO = 'A'
AND US.USUA_ID_USUARIO = NC.NFCA_USUARIO
AND INIC_CONF.SWTK_ID_TRACKING = (SELECT MAX(SWTK_ID_TRACKING)
FROM SW_TRACKING
WHERE SWTK_ID_PED = PC.PEDV_ID_PED
AND SWTK_ID_EVENTO = 15)
UNION
SELECT PC.PEDV_ID_PLANTA,
PC.PEDV_DT_REGISTRO,
NC.NFCA_ID_PED,
PC.PEDV_ID_PREVOL,
PC.PEDV_ID_ONDA,
NC.NFCA_ID_NOTA,
NC.NFCA_SERIE,
NC.NFCA_VL_TOTAL_NOTA,
NC.NFCA_QT_VOLUMES,
NOTA_ACEITA.SWTK_DT_REGISTRO,
'A' STATUS,
NC.NFCA_USUARIO,
US.USUA_NOME
FROM PLANTA PL,
PEDIDO_CAB PC,
FILIAL FI,
NOTA_FISCAL_CABECALHO NC,
USUARIOS US,
SW_TRACKING NOTA_ACEITA
WHERE PL.PLTA_ID_PLANTA = 'PFRIO'
AND NC.NFCA_DT_EMISSAO >= DECODE('11/01/2012','NULL',NC.NFCA_DT_EMISSAO,TO_DATE('11/01/2012','DD/MM/RRRR'))
AND NC.NFCA_DT_EMISSAO <= DECODE('11/01/2012','NULL',NC.NFCA_DT_EMISSAO,TO_DATE('11/01/2012','DD/MM/RRRR'))
AND NC.NFCA_HR_EMISSAO >= DECODE('NULL','NULL',NC.NFCA_HR_EMISSAO,'NULL')
AND NC.NFCA_HR_EMISSAO <= DECODE('NULL','NULL',NC.NFCA_HR_EMISSAO,'NULL')
AND NC.NFCA_SERIE = '1'
AND PC.PEDV_ID_PLANTA = PL.PLTA_ID_PLANTA
AND PC.PEDV_SITUACAO != 'C'
AND FI.FILI_CGC = PL.PLTA_ID_TERCEIRO
AND NC.NFCA_ID_CIA = FI.FILI_ID_CIA
AND NC.NFCA_ID_FILIAL = FI.FILI_ID_FILIAL
AND NC.NFCA_ID_PED = TO_NUMBER(PC.PEDV_NUM_PED_TERC)
AND NC.NFCA_SITUACAO = 'A'
AND US.USUA_ID_USUARIO = NC.NFCA_USUARIO
AND NOTA_ACEITA.SWTK_ID_TRACKING = (SELECT MAX(SWTK_ID_TRACKING)
FROM SW_TRACKING
WHERE SWTK_ID_PED = PC.PEDV_ID_PED
AND SWTK_ID_EVENTO = 35)
ORDER BY PEDV_ID_PLANTA,PEDV_DT_REGISTRO
and this is the result set
1     PFRIO     11/01/2012     406901     2320     769     949     1     114,10     1,000000000     PFRIOS     Sige     7/5/2012     7/5/2012     10/10/2008
2     PFRIO     11/01/2012     406901     2320     769     949     1     114,10     1,000000000     PFRIOS     Sige     7/5/2012     10/11/2048     7/5/2012
3     PFRIO     11/01/2012     406901     2320     769     949     1     114,10     1,000000000     PFRIOS     Sige     10/9/2003     7/5/2012     7/5/2012

Similar Messages

  • Conversion puts all data in one column

    conversion puts all data in one column on excel

    ok i created my own function
    CREATE OR REPLACE TYPE t_varchar2_tab AS TABLE OF VARCHAR2(4000);
    CREATE OR REPLACE FUNCTION tab_to_string (p_varchar2_tab IN t_varchar2_tab,
    p_delimiter IN VARCHAR2 DEFAULT ',') RETURN VARCHAR2 IS
    l_string VARCHAR2(32767);
    BEGIN
    FOR i IN p_varchar2_tab.FIRST .. p_varchar2_tab.LAST LOOP
    IF i != p_varchar2_tab.FIRST THEN
    l_string := l_string || p_delimiter;
    END IF;
    l_string := l_string || p_varchar2_tab(i);
    END LOOP;
    RETURN l_string;
    END tab_to_string;

  • It used to be that when I created a pdf from a word or publisher document, hyperlinks worked fine. Now I cannot get them to work unless the text displayed for the link is the complete address and it all appears on one line. Why?

    it used to be that when I created a pdf from a word or publisher document, hyperlinks worked fine. Now I cannot get them to work unless the text displayed for the link is the complete address and it all appears on one line. Why?

    You can print to the Adobe PDF printer, but that only creates links that Acrobat or Reader recognize as such. That is the reason for needing the entire URL on one line. It is not actually an embedded link, but one created by Acrobat on the fly. With OFFICE 2013 you have two choices: 1. create the PDF with the print to Adobe PDF and then add the links in Acrobat so that they are complete or 2. I think the WORD save as PDF or XPS will create the PDF with links, but not sure. If so, that would be the quickest solution for you, but be aware of potential problems with the MS plugin.
    Of course, the third option is to upgrade to XI which can be done with AA 9. You will probably not be eligible for a for an upgrade to whatever the next version will be.

  • Expose puts all windows on one screen?

    SHORT VERSION: When I have my MBP hooked up to a 2nd monitor, sometime when I invoke the "all windows" mode in Exposé, it puts all the windows one one screen (usually the larger second screen) -- meanwhile if there are any minimized windows, it will "stack" them on the second screen at full size.
    * This doesn't happen all the time. And I haven't quite figured out what conditions "cause" it.
    * If I restart, the problem goes away.
    * Mousing over a window only works correctly on the second screen (trying to hover over a window on the screen with the "minimized" windows -- those don't respond)
    Thoughts?
    -r

    You should fit 16 spaces of apps/folder icons per page. So, from your post, what is happening is that on page 1 you have 3 rows of 4 apps each then 1 row of 2 apps. On page 2 you have 1 app.
    You can easily fix this via iTunes. Connect your iPod Touch to iTunes and to the following:
    1. Touch and hold the app icon that you want to move (In this case it would be your sole icon on page2)
    2. This will put you in edit mode for apps while they will all begin to shake
    3. Grap the app with your finger and move it to the left edge of the screen
    4. This will move it to page 1 and then you can place it wherever you want
    Now you will all 15 apps on page 1.
    Axel F.

  • Problems with data merge (CS4) - puts all fields in one

    Data merge is acting very weird, I have a standard textfile of six columns exported to .csv. When I import it in InDesign it puts all fields in one place (see image) and it becomes totally useless. Has anyone had this problem and if so, how did you solve it?
    Thank you!

    It is a regular textfile (http://www.pixentral.com/show.php?picture=1k0bmos4r2l7lCtegA1CGHIcw98jrM
    ) divided into columns...
    28 apr 2009 kl. 23.00 skrev Peter Spier:
    I took a look at the image, now that it's out of the queue, and the 
    fields seem to be seaparted by semi-colons. How did you make the file?
    >
    ID recognizes comma-sparated (CSV) or tab-delimited text files.
    >
    Peter
    >

  • Show Top n Values on One Line

    I have my SSRS report to show the top 3 volumes by physician. My problem is it shows them in three lines going down, even though the code is in one cell. Such as:
    Dr Smith
    Dr Johnson
    Dr James
    I need it to show as Dr Smith, Dr Johnson, Dr James (all on one line separated by commas). Here is what I have tried:
    =Switch(RunningValue(Fields!Attending_Pract_Name.Value,CountDistinct,Nothing)=1,
    Fields!Attending_Pract_Name.Value) & ", " &
    Switch(RunningValue(Fields!Attending_Pract_Name.Value,CountDistinct,Nothing)=2,
    Fields!Attending_Pract_Name.Value) & ", " &
    Switch(RunningValue(Fields!Attending_Pract_Name.Value,CountDistinct,Nothing)=3,
    Fields!Attending_Pract_Name.Value)
    But it still puts the list going down instead of side by side. Any ideas?

    Hi cpemtp1,
    Based on my understanding, there is a column with a lot of rows. Now, you want to combine data of top three rows into one line, right?
    In Reporting Services, when generating each detail row, it only pass one value of data field into expression. So we can never simply using expression to combine three values within one data field together. Regarding your expression, for each row, if this
    value meets requirement, the expression returns this value, otherwise it returns null value. In your scenario, if you only want to display those top three values in your tablix, I would recommend you create another dataset and combine data of top three rows
    to one line on query level. Please refer to screenshots below:
    Reference:
    Use PATH Mode with FOR XML
    How to combine values from multiple rows of a single column (T-SQL, Microsoft SQL Server, FOR XML PATH, CSV ).
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu

  • F4IF_INT_TABLE_VALUE_REQUEST - how can I return all values from the line?

    Hi,
    I'm using FM F4IF_INT_TABLE_VALUE_REQUEST to show a pop-up with my internal table values.  The internal table has 3 fields, ATINN, ATZHL and a description field ATWTB.  ATINN and ATZHL are needed to complete the unique table key, however this FM will only return the value of one field in any line I select.
    How can I see all the values in the line I select in the return table?
    My code is as follows:
      DATA: tbl_cawnt LIKE cawnt OCCURS 0,
            wa_cawnt LIKE cawnt,
            BEGIN OF tbl_list OCCURS 0,
              atinn LIKE cawnt-atinn,
              atzhl LIKE cawnt-atzhl,
              atwtb LIKE cawnt-atwtb,
            END OF tbl_list,
            wa_list LIKE tbl_list,
            tbl_return LIKE ddshretval OCCURS 0,
            wa_return LIKE ddshretval,
            tbl_fields LIKE dfies OCCURS 0,
            tbl_dynp LIKE dselc OCCURS 0.
      REFRESH: tbl_list, tbl_cawnt.
      SELECT atinn atzhl atwtb
        FROM cawnt
        INTO CORRESPONDING FIELDS OF TABLE tbl_cawnt
        WHERE spras EQ sy-langu.
      LOOP AT tbl_cawnt INTO wa_cawnt.
        CLEAR wa_list.
        MOVE: wa_cawnt-atwtb TO wa_list-atwtb,
              wa_cawnt-atinn TO wa_list-atinn,
              wa_cawnt-atzhl TO wa_list-atzhl.
        APPEND wa_list TO tbl_list.
      ENDLOOP.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield        = 'ATWTB'
          dynpprog        = sy-repid
          dynpnr          = sy-dynnr
          value_org       = 'S'
        TABLES
          value_tab       = tbl_list
          return_tab      = tbl_return
        EXCEPTIONS
          parameter_error = 1
          no_values_found = 2
          OTHERS          = 3.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Thanks!

    Hi,
      Use the structure DYNPFLD_MAPPING
    With this internal table you can easily define that you want to return
    other columns of the hit list in addition to field RETFIELD to the
    screen.
    In this IT you can MAP the screen fields to the serch help screen fields this has three fields
    FLDNAME this is the field anme from the search help
    FLDINH This has to be blank which would be field with the field value that you want to map
    DYFLDNAME THis is the screen field name.
    So here you can get the values for the other fields that you want which are on the search help just populate the name of the fields in FLDNAME.
    Regards,
    Himanshu

  • Showing all values for Multiple Line field with Append Changes

    I have a simple SharePoint list with a multiple line column that has append changes enabled. I am doing a report with Report Builder 3.0 and I want to show all values of the field the same way you achieve it through a DVWP using:<SharePoint:AppendOnlyHistory
    FieldName="Comments" runat="server"
    ControlMode="Display" ItemId="{@ID}"/>
    For reference, I'm trying to replicate this function, but on a report:
    http://sympmarc.com/2011/02/07/showing-all-versions-of-append-changes-to-existing-text-in-a-data-view-web-part-dvwp/ 
    Any suggestions to show all the appended values in a report?

    Hi Lewis75581,
    According to your description, you want to show the append changes history of a column in Reporting Services. Right?
    In Reporting Services, we don't have a feature to show the change history of a column. However, we can have workaround on SQL level. In SQL Server, we have tables: inserted table and deleted table which contains the recently inserted and deleted records.
    In this scenario, we can create a trigger in your database. Once you insert rows into the table, it will be triggered and get those inserted rows. Then insert those rows into another table. Now we can create one more dataset based on this table and display
    these inserted rows in our report. This might be the most effective workaround for your requirement. Please refer to a similar thread below:
    http://social.technet.microsoft.com/Forums/en-US/dacfb141-a976-489a-acca-789ba90e15de/ssrs-multiple-reports-with-different-parameteres-in-single-window?forum=sqlreportingservices
    Reference:
    Use the inserted and deleted Tables
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Copy all values from one page to another

    Dear all
    i have creation page user enter all the records and save if the details are not in customer master
    then user click add customer it will call to master customer page and as well as i want to copy all these fields to customer master when ever he click on add customer
    how it is possible..
    Regards
    Sreekanth

    Hi,
    before navigating to the Master customer Page...
    take all the values in hashmap
    hm.put("value1",value);
    hm.put("value2",value2);
    Pass the hashmap in pageContext.setForwardURL();
    then on Master customer Page
    grab the values in string variables using pageContext.getParameter
    and set it on fields using
    setText();
    Thanks,
    Gaurav

  • SSRS (Report Builder 3.0) Showing all values for Multiple Line field with Append Changes

    I have a simple SharePoint list with a multiple line column that has append changes enabled. I am doing a report with Report Builder 3.0 and I want to show all values of the field the same way you achieve it through a DVWP using:<SharePoint:AppendOnlyHistory
    FieldName="Comments" runat="server"
    ControlMode="Display" ItemId="{@ID}"/>
    Any suggestions to show all the appended values?

    Hi,
    I am trying to involve someone familiar with this topic to further look at this issue.
    Regards,
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Rebecca Tu
    TechNet Community Support

  • How to pass all values from one node element to created node element?

    Hi
    I have model node element under which there are 7 values, and I've created value node element and trying to pass the values from the model node Element to this value node element. But instead of passing all the values its listing only one value.
    How do we rectify this problem!!!
    Thanks in Advance
    Srikant

    Hi Anil
    I've created the node named: TableNode
    and the name of the node from which i want to get the data is : Li_Required_Node
    the Node Structure is
    Context
      |_ Zs_Quantity_Input
         |_Output
           |_Node_Required_Node
              |_Schddt
      |_TableNode
        |_CmpDate
    The Schddt has some 7 values
    The code Snippet is as follows:
    IPublicPricesComp.ITableNodeElement nodeElement;
    IPublicPricesComp.ILi_Required_NodeElement scheduleElement;
    int counter3Max = wdContext.ILi_Required_Node().size();
    for( int counter3= 0 ; counter3 < counter3Max ;counter3++ )
    nodeElement = wdContext.createTableNodeElement();
                             scheduleElement = wdContext.nodeZs_Quantity_Input().nodeOutput_Contract_Qty().nodeLi_Required_Node().getLi_Required_NodeElementAt(counter3);
    nodeElement.setCmpDate(scheduleElement.getSchddt());
    wdContext.nodeTableNode().addElement(nodeElement);               
    On writing the above code and then binding the node to a table column only one value getting displayed
    Where can be the error?
    Thanks in Advance
    Srikant

  • Import to library puts all files in one folder

    Okay I got my library messed up during the iPhoto'09 to iPhoto'11 upgrade. I know there is way to fix it but I thought I might as well start over with a fresh new library and import all my photos into it to avoid any further issues.
    In my old iPhoto library the photos are organized under Originals by YEAR and then EVENTS (in my case date of picture taken). I copied the "Originals" folder from my old library and put it on the desktop.
    I then created a new empty library with iPhoto'11 and now tried to import the pictures from the folder on the desktop. It all worked about 6,000 pictures but it didn't quiet organize them as I wanted.
    If I look into the new library there is now a "Masters" folder which contains only one other folder which is 2010 which only contains one other one which is "10" and that contains "16" - so obviously the date 2010-10-16 and then all events are in this last folder.
    It seems importing has the result of the folder structure being based on the date of import, rather the date of picture taken.
    Does anybody know a way how I can get this do import and create folder structure based on date of picture taken?
    Thanks!

    You can not
    the file/folder structure within the iPhoto library is not a user controlled item - it is controlled by iPhoto and must be left as is - simply put there are no suer serviceable (or controllable) parts in the iPhoto library
    And there is no need for you to control (or even be aware) of the iPhoto library structure - you should not be going directly into the iPhoto library and the OS access tools know the current structure and use it so you do not have to
    If you are concerned about accessing your photos click here for a discussion on the many correct and safe ways to access your iPhoto library photos.
    LN

  • How to put all actionscript in one frame instead of on buttons themselves?

    so i have a simple project where I have my actions script on each button itself.
    I'd like to have one actionscript file on the main timeline controlling everything instead of having to drill down to change the AS for a button.
    I have two scenes. Scene none has a button forcing to scene 2. When i put code on main timeline it broke my button that is on Scene 2 that allows me to jump around in that timeline to different frame labels.
    what did I do wrong?
    Original AS on Button instance bldg1_thumb1:
    on (release) {
        _parent.gotoAndStop ("Building 1 Big 1");
    New AS on Controlling Frame in Main Timeline:
    bldg1_thumb1.onRelease=function () {
        _parent.gotoAndStop ("Building 1 Big 1");

    try:
    var tl:MovieClip=this
    bldg1_thumb1.onRelease=function () {
    tl.gotoAndStop ("Building 1 Big 1");

  • SQL to report multiple values in one line

    I have a question for you SQL experts out there.
    Let's say I have two tables,
    solution
    solution_data
    There is a one-to-many relationship between the solution table and the solution_data table.
    For example,
    solution.id = 1
    solution.name = calendar
    records in the solution_data table
    solution_data.solution_id = 1
    solution_data.supported_os = Windows
    solution_data.solution_id = 1
    solution_data.supported_os = Linux
    solution_data.solution_id = 1
    solution_data.supported_os = Mac
    I want a SQL query to output that data on a single line like this:
    solution name     supported_os
    calendar     windows, Linux, Mac
    I can't use aliases for solution_data, because each solution_data record does not have a known unique identifier, nor do I know ahead of time how many records there are for a particular solution.
    I also don't want to write a PL/SQL procedure for this.
    Any ideas?

    Tom Kyte has a solution called STRAGG
    http://asktom.oracle.com/pls/ask/f?p=4950:8:368216229952376057::NO::F4950_P8_DISPLAYID,F4950_P8_CRITERIA:2196162600402,

  • Itunes 11.3 puts all podcasts in one playlist

    I'm having a problem with my podcasts in iTunes 11.3.  Most of them are ok, but in my playlist for "This American Life", I have 138 episodes in iTunes on my Mac, but on my iPod, I have 1249 episodes!  Some are duplicates, but most are other podcasts - "We're Alive", "RadioLab", etc.
    I have tried removing TAL from my iPod and re-syncing, but it still ends up with multiple podcasts listed under "This American Life".  All my other podcasts work just fine.
    My iMac is Mavericks 10.9.4 and my iPod is a Classic 160GB
    How do I fix this?

    so it would seem that Apple decided I only wanted the most recent episodes instead of all episodes
    iTunes was skipping most of my podcasts if there was more than one posted since the last time I ran iTunes.
    Itunes was downloading a bunch of podcasts every day ... and skipping any that had multiple added episodes between checks.
    Settings Check ...
    Check for new Episodes Every Hour - Yes
    I had it set to download all Episodes, but installing Itunes 11 changed it to download Most Recent only ...
    will this fix it ?
    Now it's downloading a carp load of podcasts to my computer ...
    changing default settings is one thing ...
    changing my settings without warning me is kinda frustrating ...
    lets see if this works

Maybe you are looking for

  • Could Not Find Installation Information for this Machine" I need Help!

    i accidentaly erased the main drive and now i am trying hard to reinstal the OS X again but i constantly keep seeing this "could not find installation information for this machine" i need help....

  • How to restore Vista on old Satellite P300?

    Sorry this is a long one. I bought a new P70 to replace my older P300 which came with Vista and now want to restore it to a clean install for the children to use. The problem is that I had partitioned the drive and had been testing the betta and RC1

  • IP address no longer valid on 8520 Curve

    Recently bought a Curve 8520. Great shape; however, I have a problem with the Wi-Fi connection. The phone connects to my home router just fine. I cannot use the browser to access the internet. I checked all the settings. The Data Service is "ON"   Wh

  • After changing my primary email for Apple ID, iCloud has issues

    I recently changed my apple ID primary email address as the old email address is not obsolete which meant I had to turn off iCloud on all devices and log back in so that the username/email was correct for password verification. Now that I have done t

  • Shared Variables Won't Update

    Hello All - I'm having a problem interacting with my OPC server, and I'm hoping some suggestions will help me out here. I have an OPC server running on a XP SP2 machine, and it is interacting properly with my equipment (a bioreactor). When I use the