2.1 EA2 does not display query results, query works fine in sqlplus

2.1 EA2/Windows XP 32-bit
The following query does not show any results for Total(GB) and Free(GB) columns. The diskgroup name shows correctly.
SELECT
DG.name ,
ROUND(SUM(DSK.TOTAL_MB)/1024,2) "Total (GB)",
round(SUM(DSK.FREE_MB)/1024,2) "Free (GB)"
FROM
V$ASM_DISK DSK,
V$ASM_DISKGROUP DG
WHERE
DSK.GROUP_NUMBER=DG.GROUP_NUMBER
group by DG.name;
The query works fine when run from SQL*Plus:
SQL> SELECT
2 DG.name ,
3 ROUND(SUM(DSK.TOTAL_MB)/1024,2) "Total (GB)",
4 round(SUM(DSK.FREE_MB)/1024,2) "Free (GB)"
5 FROM
6 V$ASM_DISK DSK,
7 V$ASM_DISKGROUP DG
8 WHERE
9 DSK.GROUP_NUMBER=DG.GROUP_NUMBER
10 GROUP BY DG.name;
NAME Total (GB) Free (GB)
DG1 707.98 162.32
DG2 134.84 122.68
SQL>
This must be something unique to SQLDeveloper. I tested in 2.1 EA1 and 1.5.5.59.69 and the query does not show results for the Total (GB) and Free (GB) columns.

I would like to update the problem. It seems like when SQLDeveloper is connected to ASM instance, it has trouble using the divide operator (/). For example, the following query works fine:
SELECT
name,
TOTAL_MB
FROM
V$ASM_DISKGROUP;
But if I try to divide the TOTAL_MB by any number, the column shows blank (the column is blank, not NULL). So, if I try to run the following query, the output will just display diskgroup names. The TOTAL_MB/1024 column shows blank.
SELECT
name,
TOTAL_MB/1024
FROM
V$ASM_DISKGROUP;
If I run the same query in SQL*Plus from the same desktop using the same TNS alias, it works just fine which tells me that it is a SQLDeveloper problem.
When I am connected to a regular database, then the problem does not show up and SQLDeveloper is able to display the results even when I am using the divide operator (/).

Similar Messages

  • This Formula(Function) compiles but does not display any result

    Please can anybody help me resolve this issue.The code below is a code for a formula(function) column in oracle report, i have complied this code and it successfully complied but it does not display any result for the column having a stock balance in the entire report.
    function CF_STOCK_BALFormula return Number is
         v_all_positive NUMBER;
         v_all_negative NUMBER;
    begin
         IF :transaction_type IN ('RECEIPT', 'RETURN') THEN
              IF :cp_stock_bal IS NULL OR :cp_stock_bal = 0 THEN
                   :cp_stock_bal := :opening_balance + :cp_stock_bal + :quantity;
              ELSE
                   :cp_stock_bal := :cp_stock_bal + :quantity;
              END IF;
         ELSIF :transaction_type IN ('ISSUE') THEN
              IF :cp_stock_bal IS NULL OR :cp_stock_bal = 0 THEN
                   :cp_stock_bal := :opening_balance + :cp_stock_bal - :quantity;
              ELSE
                   :cp_stock_bal := :cp_stock_bal - :quantity;
              END IF;
         END IF;
    RETURN (:cp_stock_bal);
    end;
    Edited by: Gbenga on Jan 17, 2012 11:30 PM

    Please can anybody help me resolve this issue.The code below is a code for a formula(function) column in oracle report, i have complied this code and it successfully complied but it does not display any result for the column having a stock balance in the entire report.
    function CF_STOCK_BALFormula return Number is
         v_all_positive NUMBER;
         v_all_negative NUMBER;
    begin
         IF :transaction_type IN ('RECEIPT', 'RETURN') THEN
              IF :cp_stock_bal IS NULL OR :cp_stock_bal = 0 THEN
                   :cp_stock_bal := :opening_balance + :cp_stock_bal + :quantity;
              ELSE
                   :cp_stock_bal := :cp_stock_bal + :quantity;
              END IF;
         ELSIF :transaction_type IN ('ISSUE') THEN
              IF :cp_stock_bal IS NULL OR :cp_stock_bal = 0 THEN
                   :cp_stock_bal := :opening_balance + :cp_stock_bal - :quantity;
              ELSE
                   :cp_stock_bal := :cp_stock_bal - :quantity;
              END IF;
         END IF;
    RETURN (:cp_stock_bal);
    end;
    Edited by: Gbenga on Jan 17, 2012 11:30 PM

  • Yosemite - MacBook Air 10.10 - "Notes" does not open - "Preview" opens, but does not display PDF's - "iCal" works in new strange ways, as if no one checked its operation - Everything worked very well until Upgrade to Yosemite ! - Happen to others?

    Yosemite - MacBook Air 10.10 - "Notes" does not open - "Preview" opens, but does not display PDF's - "iCal" works in new strange ways, as if no one checked its operation - Everything worked very well until Upgrade to Yosemite ! - Happen to others?

    Thanks for your lengthy reminder dude, I have a similar Mac with yours. I suspect its a software fault because it happens after I upgraded to Lion, 10.7.2.

  • OBIEE Answers does not display the result set of a report query

    Hi,
    We have a pivot table type of report in Oracle Business Intelligence Enterprise Edition v.10.1.3.3.2 Answers that has the following characteristics:
         3 Pages
         3 Sections , 4 Columns
         18363 Rows in the result set
    As per the NQQuery.log, the query for this report executes successfully resulting in 18363 rows. However, nothing comes up in the display on Answers. Moreover, no error is reported. The instanceconfig.xml file has the following setting:
    <PivotView>
         <CubeMaxRecords>30000</CubeMaxRecords>
         <CubeMaxPopulatedCells>300000</CubeMaxPopulatedCells>
    </PivotView>
    Even with these settings, Answers just returns a blank page - nothing is displayed in the name of the result set of the report query. Has anyone encountered this problem scenario before?
    Any help is much appreciated.
    Thanks,
    Piyush

    Hi Fiston / Pradeep,
    Thanks for your inputs. A few points to note:
    -> I am actually not getting any error message in answers or the NQQuery log. Moreover I am not getting any errors related to "query governor limit exceeding in cube generation" also.
    -> I have other pivot table type of reports in the same repository that work fine. In fact the report which has this issue even works sometimes - what actually is happening is that if I alter the number of sections from 3 to 4, then the result set changes from 14755 Rows to 18363 Rows and as per the NQQuery.log in both cases the query completes successfully. However, when the result set has 14755 rows, I get to see the output in Answers; however when the result set is 18636 rows, the Answers screen just goes blank and does not show any output or error. This makes me believe that there is some parameter in instanceconfig or the NQSconfig file - I have tried a lot of changes but nothing works !
    Any help is much appreciated.
    Best Regards,
    Piyush

  • 2.1 EA1: Query Builder does not update View Results query

    When using the Query Builder, if you click onto the View Results tab to see the current query results, then go back to the "Select Columns" or "Create Where Clause" tabs to change the query, the "View Results" tab still shows the results of the original query even if none of the tables or columns from the original query exist. Clicking the Run Report button or setting a refresh interval has no effect.
    On a further note, the query builder still is not reentrant, in that you can't select (highlight a portion of or position the cursor within) a query and open the query builder for that query to graphically make modifications.

    Sentinel,
    The issue is known and is listed in the known issues in the release notes for the early adopter. We hope to have this addressed for production.
    The re-entrant query builder is still on our list of things to do. We plan to rewrite the Query Builder and address a number of the requests related to this feature. I'm hoping to make it a priority for the next release.
    Sue

  • Private Photos App - pictures not displaying This app was working fine, then suddenly it won`t display any of the photos.

    This app was working fine, then suddenly it won't display any of the photos. One day the photos were there, gone the next. It still shows how many photos are there but just shows a white screen. I can't export anything to the photo album. Adding photos to existing folders yields the same result, only white screen displayed. However, I can create new albums and add photos to those without issue. Does anybody know how to recover the "missing" photo"  I was going to try reinstalling the app but it's no longer available in the iTunes App Store. Thanks, Tracy

    1, you can't at the moment, though with iOS 5 in the Autumn, from http://www.apple.com/ios/ios5/features.html#photos :
    Even organize your photos in albums — right on your device
    2, by removing it from you synced from and re-syncing. Only photos taken with the iPad, copied to it via the camera connection kit, or saved from emails/websites etc can be deleted directly on the iPad (either via the trashcan icon in the top right corner if viewing the photo in full screen, or via the icon of the box with the arrow coming out of it in thumbnail view)
    3, the location of the photos that you synced to the iPad should be listed on the iPad's Photos tab when connected to your computer's iTunes.
    4, you can copy the photos from your iPad to your computer : http://support.apple.com/kb/HT4083 . You should also be able to delete them from the iPad as part of the transfer process to your computer, and it's then your choice whether to add them to your sync photo list so as to copy them back to the iPad. Copying them to your computer would allow you to organise them into folders and therefore be able to sync them back into separate albums.
    5, I don't use Dropbox either. There are some third-party browser apps in the iTunes App Store that allow you to download pages so that you can view them when offline e.g. Atomic Web (the whole page is saved within Atomic Web, it doesn't place a photo into the Photos app)
    6, deleting content should help. If you remove an app from your iPad then you also remove the content that it's got on the iPad - so if you then decide to reinstall it back onto the iPad then you will need to manually add back any content that you want in it. None of the Apple built-in apps (including Photos) can be removed from the iPad

  • Fonts not displaying correctly in Muse, working fine on upload. HELP! Working on Muse CC 2014, Mac OSX 10.9.4

    Hello!
    In Muse, my fonts are displaying incorrectly, when uploaded the fonts are correct. I am guessing this is a system issue. First time I have had this problem since making the jump to CC 2014 and it is making designing painful . I've updated everything, dumped and reinstalled the web fonts, restarted, cleared PRAM and scratched my head a bunch. I also tried to find a font cache to dump but could not locate it...any thoughts would be greatly appreciated. Thanks Musers! - Andrew

    Re: Source Sans Pro not displaying in 'Design' mode
    This did the trick for me. Thanks D Dog!

  • Macbook Pro does not see Fast Ethernet but works fine with Gigabit Ethernet

    Hi to everybody,
      It is some time I have a problem connecting my unibody Macbook Pro (late 2008) to the ethernet cables in my office. There are 16 wall jacks in the lab, of which 13 are Fast Ethernet (100 Mbit/s) and 3 are Gigabit Ethernet. No matter what I do, if I connect to the 100 Mbit/s jacks, my Macbook does not see the connection and keeps saying "Cable unplugged". If I switch to a Gigabit jack, then a connection is quickly established.
    I have spent one whole afternoon debugging. Here is what I did:
    My computer dual boots Mac OS X and Linux. No matter which operating system I use, the problem is the same.
    Using different Cat.5 cables does not change the situation (I tried three of them.)
    All the 13 Fast Ethernet jacks do not work.
    All the 3 Gigabit jacks work smoothly.
    What puzzles me is that my computer happly uses the newest technology (Gigabit ethernet) but has problems with the oldest one. Has somebody else experienced the same problem?

    After a lot of struggle, I discovered that other people had this very issue as well. It seems that the cause is a faulty Realtek chip used in the ethernet cards of some MacBooks and other brands. There is apparently no way to fix this: I solved my problems by buying a Gigabit Ethernet switch which I connected to the Fast Ethernet wall jack. (Another option might be to use a Ethernet-to-USB adapter - but I did not try this as I have no adapter of this kind.)

  • Sharepoint 2010 - Home Page not displaying, all other pages work fine

    The web page URL <server>/sitepages/Home.aspx is not displaying when accessed. All other pages work fine. We changed the default welcome page to another page, and that works. When we try to access the Home.aspx, it displays "An unexpected error
    occurred" message. The Home.aspx only contains a couple of Lists, with Links, and a calendar. The other odd thing is that the Home.aspx displays in SharePoint designer in Advanced Edit mode, but won't display in a browser. Any ideas?

    Hi Isepic,
    1) Check the approval of the page (Home.aspx) whether it is in pending state .
    2) OR might be some problematic webpart is added in the page. You can try to close it and access. To do that,you can try to access the web part maintenance page of home.aspx and test by closing the webpart one by one.
         To access the maintenance page,pass the parameters ?contents=1 after the home.aspx
           For example, http://site url/home.aspx?contents=1
    3) Also,check the ULS logs after accessing the home.aspx to know what is happening.
    Please remember to mark your question as answered & Vote helpful,if this solves/helps your problem. 
    s p kumar

  • Page not displayed on server but works fine locally in Jdeveloper

    Hi,
    The page works fine locally when run from Jdeveloper.
    But when the page is imported to server and when the page is called....it trys to load the page for long time and times out and displays the IE error 'The Page cannot be displayed'.
    Do I have to do anything specific in server after importing a page?

    In the CO of the table region:
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    ApplicationModuleImpl am1 = (ApplicationModuleImpl) pageContext.getRootApplicationModule();
    SalesOrderHeaders2VOImpl VO1 = (SalesOrderHeaders2VOImpl) am1.findViewObject("SalesOrderHeaders2VO");
    String HeaderId = (VO1.first().getAttribute("HeaderId")).toString();
    if (HeaderId != null)
    Serializable[] params = {HeaderId};
    OAApplicationModule am = (OAApplicationModule)pageContext.getApplicationModule(webBean);
    OADBTransactionImpl DBTrans = (OADBTransactionImpl)am.getOADBTransaction();
    boolean log = DBTrans.loggingEnabled() ;
    // Write Diagnostic message...
    if(pageContext.isLoggingEnabled(1))
    pageContext.writeDiagnostics(this," am : "+am ,1);
    if(am != null)
    OAViewObject viewObject = (OAViewObject)am.findViewObject("InterfaceSummVO");
    if(viewObject != null)
    viewObject.setWhereClauseParams(null);
    viewObject.setWhereClause("header_id = :1");
    viewObject.setWhereClauseParam(0, HeaderId );
    viewObject.executeQuery();
    }

  • Just installed Firefox 10. For long web pages which are forms does not display the bottom. Looks fine if source if viewed.

    Web Page with long form to fill in. Worked on Firefox 9. Works
    on IE. Now doesn't work. End of form and submit button is missing. Rest of form looks good. The source is correct. Just quits displaying

    Hi,
    Please try a '''Ctrl''' + '''F5''' refresh. This helps to bring in the page contents afresh. If the problem persists please check in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode.] Please also check if the page can be fully loaded alone with no other tabs loading.
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [http://support.mozilla.com/en-US/kb/Uninstalling+add-ons Uninstalling Add-ons]
    [http://kb.mozillazine.org/Uninstalling_toolbars Uninstalling Toolbars]

  • Flash objects not displaying in Firefox (but works fine in Chrome and IE)

    Well, I'm trying to embed a Shockwave Flash object into a website I'm building. It displays in Chrome and IE, but it doesn't show up at all in Firefox. It's just white space. Ive tried it on two machines, so it's presumably the code. Both the machines have Adobe Flash enabled... I'm not sure what the problem is. I've not worked with embedding Flash objects in HTML before, so, it's probably something really obvious. I just used the insert command on dreamweaver and it wrote the code that I'm using. If anyone can help me, it would be much appreciated. Here's my code:
    <pre><nowiki><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="99%" height="600" id="FlashID">
    <param name="movie" value="The file path" />
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="10.1.0.0" />
    <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
    <param name="expressinstall" value="../Scripts/expressInstall.swf" />
    <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
    <!--[if !IE]>-->
    <object type="application/x-shockwave-flash" data="the file path" width="99%" height="76.5%">
    <!--<![endif]-->
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="10.1.0.0" />
    <param name="expressinstall" value="../Scripts/expressInstall.swf" />
    <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
    <div>
    <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
    <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
    </div>
    <!--[if !IE]>-->
    </object>
    <!--<![endif]--></nowiki></pre>

    If you can't post an address for a page demonstrating the problem, could you check the Web Console (Ctrl+Shift+k) and Browser Console (Ctrl+Shift+j) for any messages related to the Flash media? For example, does either console show that Firefox is requesting the SWF file? Does either show an error in content type or any kind of security message?

  • Why will firefox not start on my laptop? can't uninstall or open the profile manager either. it simply does not run. it used to work fine until i had to restore my system.

    had firefox 4.0 & have been a user of firefox for a few years now. never had any problems. had to do a system restore after my computer detected a virus of some sort & i couldn't do anything. the virus kept popping up a bogus add for me to buy an antivirus program. had to restart laptop in safemode to initiate the restore. ever since then firefox has not opened. can't even uninstall it or open the profile manager. anything that has to do with firefox will simply not run/open at all. i'm stumped.

    System restore can cause problems as well as solve them, it has probably completely mucked up your Firefox installation.
    Try deleting your Firefox installation directory, the default location on 32 bit Windows is C:\Program Files\Mozilla Firefox\
    Now re-install Firefox, it should pick up your current profile folder so you should not lose your bookmarks, passwords etc.

  • Website not displaying in Firefox. Works fine in IE 10 & Chrome. Windows 8/x64

    Using Firefox 21.0 on Windows 8/x64. I am experiencing some sites where Firefox displays an odd looking graphic but none of the UI that displays in Chrome or IE 10. I can re-create it for example by going to http://www.basspay.com. I'm stumped. I removed all plugins/add-ons. Started in safe mode. Deleted everything in history - all to no avail. Any pointers on where I might start to even look? It's almost the same response one would expect if javascript was disabled and there was no "noscript" fallback. Except javascript is enabled and this is a stock installation of Firefox without a single setting or config change.

    going off of what philipp said here is what you get in the page inspector, it is a backward slash, when fixed it looks like the second picture

  • Video does not display when sending from Final Cut Pro to Motion

    Suddenly, when sending an audio & video sequence to Motion, a new Motion file is created, and all my layers come in properly, but the video does not display.
    The audio plays fine, and Motion clearly know that there are video tracks there, but it does not display them.
    Additionally, when rendering the Motion file back in FCP, it turns in to black video.
    I have previous sequences within the same project that were sent just fine, and are editable properly, but any new ones I try to create just come out black.
    Help, please?

    Do you have Motion mistakenly set to render out with an Alpha channel?
    Double click your Motion clip in the Timeline. Go to Modify > Composite Mode in the menu bar and set the Alpha to "None/Ignore".

Maybe you are looking for

  • NEED more than 15 menu item in Context Menu ????

    Hi, I really need to have more than 15 menu item displayed on Context Menu. I desperately need some workaround or ideas to achieve this My client has invested thousands of dollar in Flex Project, he definitely need more than 15 menu item.If this proj

  • Need to configure - 2 Airport Expresses, Macbook Pro + iMac G4

    Hi All. My problem is I can't get my G4 iMac to work with an Airport Express (connected to the ethernet port as the iMac doesn't have wireless.) Below (A) is a configuration that works and (B) doesn't. Configuration (A) Airport Express 1(Main) (livin

  • In IOS5, Photo Albums are no longer sorted by Album name?

    Ouch!   I have been using photos on my iPhone (now the 4s) for years, and always synched with my PC where I use Photoshop Elements.   I carefully organize  my photos, put them in albums, and then sync to my iPhone.   My album names are titles like "V

  • Rattling sound when using Shake to Shuffle

    When I shake my ipod to shuffle songs there's a rattling sound which sounds like somethings loose inside my ipod is this normal?

  • ITunes whacky after upgrading to lates iTunes

    I upgraded my iTunes last week and ever since I am having trouble with my iTunes. When I insert a CD, it takes forever to read the titles from CDBD or even to play. The radio stations stop playing midway and I get the message that it is streaming. I