dash line, show by sql result

Hi, there are 2 choices to view the results for the guest (choices in the command prompt).

"All values" and "SQL result."

I found that for all values, the results are SEPARATE.
for SQL result, if the sql code is "select... from...» ', the results may be unique (choice duplicated in the command prompt)
If the sql code is "select DISTINCT... of...» ", the results are still not unqiue (double choice in the command prompt).

is this a bug? or SEPARATE only is not supported?

Hello

I don't think that there is a need to SEPARATE in the select clause. Default BI Server will apply separate in the application and go to the database. This is true for all non-primary key columns only specific columns. Here is an example,

There are some duplicate values in the column of the subregion. But even if I give the sql code following in guest of dashboard for the 'Results' option it again retrieves unique records.

SELECT customers. Sub-region of countries "OF HS

BI Server generated query:
Select distinct T175. COUNTRY_SUBREGION C1
Of
SH COUNTRY T175

Kind regards

Tags: Business Intelligence

Similar Questions

  • Dashed line shows between objects

    I use Illustrator CC, when I draw triangles adjacent broken lines show between them.

    No matter, I look at the screen full of whole image or super close-up, they are still there, what is it and how to fix?

    Screen Shot 2015-04-21 at 00.59.58.png

    Screen Shot 2015-04-21 at 01.00.08.png

    This help when you select 'Optimized work' export?

  • How can I show all the results returned by a sql query?

    Hi guys,.

    I need your help.
    Let's say I have a table: TableA. Fields in TableA are aleg, anon, monkeys. The following sentence can return, in general, several rows: select anon from TableA where aleg = somevalue. I would like to show the result of the anon column but no luck. If I try to display the results in a TextArea and the origin is a sql query shows that the first value of the line. I tried to see the like: display text (based in PLSQL) and a block anonymous plsql and coding
    DECLARE
    v_anon TableA.anon%TYPE;
    CURSOR v_cur IS
    Select anon from TableA where aleg = somevalue;
    BEGIN
    OPEN v_cur.
    LOOP
    SEEK v_cur INTO v_anon;
    EXIT WHEN v_cur % NOTFOUND;
    : FIELD_IN_FORM: = v_anon;
    END LOOP;
    CLOSE V_cur;
    END;
    but in this case, he showed no results.
    So the first question is what type of field can I use to show the result. And the second is what can I do to be able to show all the results returned by the query (if more than one line).

    concerning

    GMC

    We are all happy that you found a solution, but you must sign your messages and change your ID forum. It is always good to know the real name of the person you are communicating with. In addition, if you plan to get answer to your questions in the future, you must mark responses as useful or correct if they helped you solve your problems.

    Denes Kubicek
    -------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Opal-consulting.de/training
    http://Apex.Oracle.com/pls/OTN/f?p=31517:1
    -------------------------------------------------------------------

  • How do I rotate my result of a query from a line to a SQL column?

    Hey, guys:

    Is it possible that I can rotate my result of a query from a line to a SQL column?

    It's a certain type of pivot example
    Instead of
    DEPTNO DNAME
    -------- ---------------
    10 accounting
    It would be
    DEPTNO: 10
    DNOM: ACCOUNTING

    Hello

    When you have N columns to rank 1 and you want to display in the form of 1 column on several lines, it's called Unpivoting . Here's a way to do it:

    WITH     cntr     AS
    (
         SELECT     LEVEL     AS n
         FROM     dual
         CONNECT BY     LEVEL <= 2     -- number of columns to be unpivoted
    )
    SELECT     CASE c.n
             WHEN  1  THEN  'DEPTNO'
             WHEN  2  THEN  'DNAME'
         END || ':'        AS label
    ,     CASE c.n
             WHEN  1  THEN  TO_CHAR (d.deptno)
             WHEN  2  THEN  d.dname
         END || ':'        AS val
    ,     d.deptno               -- PK, if needed
    FROM         cntr        c
    CROSS JOIN  scott.dept  d
    WHERE   deptno = 10               -- or whatever
    ;
    

    The query above works in Oracle 9.1 or more.
    From Oracle 11.1, you can also use the SELECT... Function of the UNPIVOT operator.

  • JSON to the sql result set

    Hi all

    I have this requirement to convert the JSON format in the result set (with the lines and columns).

    is their in any case I can achieve this?

    I was able to successfully convert the sql result set in JSON format but difficult time to do the reverse.

    Flexibility:

    At some point, I expect the lines to return no more than 2 & about 50 columns maximum.

    Therefore, the JSON itself can be stored in varchar2 (4000) and not need to use CLOB. (If necessary to be passed as an argument to the function).

    Oracle version: 11.2.0.3

    Kind regards

    AAG

    There are at least the son on this site below:

    https://community.Oracle.com/thread/2505918

    https://community.Oracle.com/thread/3634280

    https://community.Oracle.com/thread/3557925

    https://community.Oracle.com/thread/2510292

  • End of the characters on the line in the SQL worksheet

    Hello

    All of a sudden end of characters on the line in the SQL in SQL Developer worksheet.

    Can someone please advice how to hide those?

    It looks like 2 ' < ' characters followed by a mathematical symbol Pi.

    Thank you
    Sagay

    Tools | Preferences | Code editor | Display | Show the white space characters

  • How to compare two lines in PL/SQL?

    Hi all

    How to compare two lines in PL/SQL? Is there a method I can use to compare their column by column instead?

    Any comments would be much appreciated.

    PhoenixBai wrote:
    By lines I mean, two rows of the same table!

    Ah, finally, we get a bit more useful information

    and I need to compare the column by column to see if there is a difference between these two rows.

    Like this, you mean?

    SQL> ed
    Wrote file afiedt.buf
    
      1  with data as (select 1 as id, 'A' as dta, 'B' as dta2 from dual union all
      2                select 2, 'A', 'B' from dual union all
      3                select 3, 'B', 'C' from dual)
      4  --
      5      ,chk as (select &id1 as id1, &id2 as id2 from dual)
      6  --
      7  select case when (
      8    select count(*)
      9    from (
     10      select dta, dta2
     11      from data, chk
     12      where id = id1
     13      minus
     14      select dta, dta2
     15      from data, chk
     16      where id = id2
     17      )
     18    ) = 0 then 'No Difference'
     19          else 'Difference'
     20          end as check_result
     21* from dual
    SQL> /
    Enter value for id1: 1
    Enter value for id2: 2
    old   5:     ,chk as (select &id1 as id1, &id2 as id2 from dual)
    new   5:     ,chk as (select 1 as id1, 2 as id2 from dual)
    
    CHECK_RESULT
    -------------
    No Difference
    
    SQL> /
    Enter value for id1: 1
    Enter value for id2: 3
    old   5:     ,chk as (select &id1 as id1, &id2 as id2 from dual)
    new   5:     ,chk as (select 1 as id1, 3 as id2 from dual)
    
    CHECK_RESULT
    -------------
    Difference
    
    SQL>
    

    My only concern is the result of this sql. East - reliable? It can really be used to differentiate the two lines? I mean, the result would be the same, as I do with Java?

    Not sure what you mean by "reliable"? SQL is not some kind of generator of random result (by derogation from the use of the DBMS_RANDOM package). If you ask him if 1 + 1 = 2, then it will always give you the right answer.

  • Why have some of my credits of icons become bookmark, just a rectangle surrounded by a dashed line?

    Why have some of my credits of icons become bookmark, just a rectangle surrounded by a dashed line?

    See:

  • On Google, Ffox 3.6.12 shows only 10 results even when I specify 100; Mac G4 10.4.11. other browsers show 100 without problem.

    On my Mac G4 two-way to 1.25 GHz Power PC with OS X 10.4.11 and Firefox 3.6.12, when I opened Google and specify 100 results like this...

    http://www.Google.com/advanced_search?hl=en & num = 100

    .. .it always shows just 10 results. While Opera and Safari (I don't use Internet Extorter) show 100 results no problem to use this URL.

    Problem was occurring at least since Firefox 3.6.9 if I remember correctly. Not sure if it was going on before that.

    Google has recently made a few changes on the site to Google search with the addition of instant search and who made the adjustment of the number of results in the settings of Google to stop working.

    If Instant Search is enabled in the settings of Google search page (link at the top right) then you get only 10 results.

    You must disable Instant Search and reload the result page, and then set the number of results to your preferred choice.

    It may not work if you change both at the same time.

    There is a link directly to the right of the Google search box on the Google results page.

    It's a button with a drop-down list: moment is On / Off.

    There is also a radio check box in the page settings of Google, which has replaced the previously used Suggestions.

  • Upper lines showing File, Edit etc, went

    Was to "restore to 2 days earlier" to get rid of the add-on music, but found this top line showing "file, editing, tools, etc. also disappeared. What I've done wrong? How to make a comeback? Also the arrow «Back» Currently only shows "Firefox - Mozilla Firefox" (top line) and bars on the next line display site shown on the screen. Center of the page displays "google search." Help?

    Hello John.

    He called for the menu bar.

    Press ALT or F10 from your keyboard to make the Menu bar temporarily visible. If you want it to be visible at all times, go in view > toolbars > Menu bar, or right click on the Navigation bar (for example, the Reload button), and then select menu bar.

    If this does not help, right-click the navigation toolbar, select Customize... and click on restore by default. If it does not immediately appear, try pressing ALT or F10. You can enter in view > toolbars > Menu bar to make it visible at all times, or with the right button of the Navigation toolbar and select menu bar.

    If none of this helps, you may have a problem with some Add on Firefox which is an obstacle to the normal behavior of your Firefox. Try to disable all add-ons (just to see) to see if Firefox goes back to normal.

  • take the cos(pi/2) shows the wrong result in swift

    take the cos(pi/2) shows the wrong result in swift but when I take the sin(pi/2) it shows the correct result.

    I'm messing around with math to swift before that I use it in my application but I'm having a problem to calculate the correct results with cos at 90 degrees, pi/2 radians and 270 degrees, 3Pi/2 radians.

    the results I get for cos(pi/2) are 6.123233995736766e - 17 when I know that it must be equal to zero...

    the same thing happens as well with the seizure of the sin (pi), sin (0), the sin (2 pi) and so on.

    6th-17 is zero! After all, you didn't feed it pi, but an approximation.

    Welcome to floating point!

    "The floating-point operations is like moving a lot of sand. "Whenever you move one you lose a bit of sand and pick up a little dirt".

    Kernigham and Plauger

  • The dashed lines in my Illustrator file deform when I copy/paste the in Excel. Otherwise, the image is fine. What I am doing wrong?

    The dashed lines in my Illustrator file deform when I copy/paste the in Excel. Otherwise, the image is fine. What I am doing wrong?

    The lines end up looking much bigger than they were initially.

    I am using the paste special option in Excel and it works fine for all parts of the image, but this.

    Someone suggested I try to use the Mode plotted, but who has not made a difference when I tried.

    The map view wouldn't make any difference, so more clarification is needed on your workflow.

    Why it's not working for you save the image as a png image in Illustrator and then insert it correctly as a picture in Excel?

    What are you trying to make to it after that's in Excel? If the PNG workflow does not work for you, then explain your workflow. It might help to know if you're Mac or Windows and the version numbers and maybe screenshots.

  • I use display spectral pitch to analyze changes people´s speech (for research purposes). I need the visuals of interesting changes to the basic blue line to document my results in the articles. It is a more sophisticated way to th

    I use display spectral pitch to analyze changes people´s speech (for research purposes). I need the visuals of interesting changes to the basic blue line to document my results in the articles. It has more sophisticated way to do than to take a screenshot? It is very short sequences consisting of a few words I need to visualize somehow on a scale of hertz.

    Hearing is not really adapted to the analysis of speech on a very basic level, I fear. He does not have analysis by Wavelet, or something like that and certainly won't break down whatever it is complex in its components. What you really need is a software dedicated at the end of the analysis of speech, and some of it is free - try this: Praat: doing Phonetics by computer

  • Click on search for result code doesn't display the line containing the search results

    I use the latest version of DreamweaverCC2014 on the latest version of Mac Mavericks. I use Dreamweavers find and replace to find code in an open html document. In the search results Panel results aren't clicking on me at the relevent code line in the document. It used to work well in the previous version of DW, I was using.

    In the DW help note it is said: ' display the results of a particular search in context: select window > results to display the search panel. " Double-click on a line in the search panel. If you are looking for the current file, the Document window displays the line containing that search result. ' http://helpx.adobe.com/Dreamweaver/using/Text.html#search_for_and_replace_text

    Double-click does not display the line containing the result of the search for me. It seems to work OK in my CSS files, but not in HTML longer (1010 lines).

    Any advice? Someone at - it the same problem? Thank you

    I have the same problem with all the HTML files that have external style sheets. for example .

    So it seems to be a bug around that. When you delete the above, double click functionality works.

  • Dotted line showing the lines around some files

    Hello

    I try just on the new indesign CC, and it gives me rushed boxes around images - usuoally our ads, which are converted into TIFF from the PDF file.

    Could someone tell me please how to disable this option?

    Thank you

    If you have the latest version of InDesign CC (9.2), someone could apply a hyperlink to the image. By default, a dotted line shows around a chassis of a hyperlink. To turn it off, choose View > Extras > hide hyperlinks.

Maybe you are looking for