Varchar2(32) field showing up as 2.10E+10

Hi: I have a field which is a varchar2(32) in the table. When I run a select, some of the values show up as 2.10E+10. Is there any way for the sql statement to print the exact value?
NETCOOL_ALERTKEY                                   VARCHAR2(32)
NETCOOL_ALERTKEY                            CNT
2.10E+10                                      2
2.10E+06                                      2
2.10E+12                                      2TIA
Ravi

Since that appears to be a text representation of scientific notation, you can do a to_number on the column like:
SQL> set numwidth 25
SQL> SELECT TO_NUMBER('2.10E+12') FROM dual;
    TO_NUMBER('2.10E+12')
            2100000000000Whether that is the "exact" value is impossible to say.
Just be aware that the to_number will fail with an error if any of the values in the column cannot be converted to numbers e.g.:
SQL> SELECT TO_NUMBER('Hello') FROM dual;
SELECT TO_NUMBER('Hello') FROM dual
ERROR at line 1:
ORA-01722: invalid numberJohn

Similar Messages

  • What table/fields show if a PO Item has a G/R Expected?

    Hi experts,
    I am coding a program in SRM, but not sure I'll find these answers there, so I'm likely going to do a RFC to ECC and get the values, but need to know how to identify.
    In ECC:
    (1) What table/field shows if a PO item has a G/R expected?
    (2) Where can I find if the PO item has any open receipts?
    (3) Where can I find the amount remaining to be invoiced on a PO item?
    Thank you very much!
    Mark

    Hi,
    I think EKPO-WEPOS = 'X' mentions that it is expecting G/R..Please see the data element WEPOS documentation for details...
    1) The above is the answer
    For 2) and 3) You can check the table EKBE...in that you can use the field VGABE to different between invoice receipt and goods receipt..
    1     Goods Receipt
    2     Invoice Receipt
    Thanks
    Naren

  • TEMPLATE.fmb - no fields show up

    Hi,
    I'm trying to develop a custom form but having trouble with the template.
    1. Copy template to my directory in Unix and compile.
    2. I run it through the applications but no fields show up on the template. Is this normal? I don't think it is but I haven't created a new form from the template in a couple of years.
    3. Messing around with the form I removed the sub-class and was able to get a couple of fields to display but I changed so many things I don't seem to be able to duplicate. And I really want to be able to use the standard sub-classes which still didn't work when I set the fields manually.
    Thanks for any help.
    Andy
    Additional information:
    I've also concluded that when I compile an existing form FNDSCAPP.fmb errors occur so it is not limited to the template.fmb.
    See error below, there was only one. Any ideas as to what would cause this?
    Compiling PRE-INSERT trigger on APPLICATION data block...
    No compilation errors.
    Compiling PRE-QUERY trigger on APPLICATION data block...
    Compilation error on PRE-QUERY trigger on APPLICATION data block:
    PL/SQL ERROR 49 at line 1, column 5
    bad bind variable 'parameter.g_query_find'
    PL/SQL ERROR 49 at line 1, column 5
    bad bind variable 'parameter.g_query_find'
    PL/SQL ERROR 49 at line 3, column 3
    bad bind variable 'parameter.g_query_find'
    Compiling PRE-UPDATE trigger on APPLICATION data block...
    No compilation errors.
    Message was edited by:
    Andy123

    Oracle Forms is a tool (somewhat like Visual Basic in appearance, but the code inside is PL/SQL) which allows a developer to quickly create user-interface applications which access an Oracle database in a very efficient and tightly-coupled way. It was originally developed to run server-side in character mode on any Unix box, before Windows existed. It was then ported to Windows to function in a client-server environment. Recent versions have been ported to Java. It now runs in a J2EE container and can integrate with Java and web services.

  • SQL Subscription field shows * only with Dynamic Text Label in SQL query

    We are using Hyperion Analyzer 7.2.x for showing budget and actual data. I have to show this financial data based on the security e.g. person in IT can see only IT dept. data. Hence I want to use dynamic text label <<userid>> for the security based on the person logging in to Analyzer.
    But when I use dynamic text label <<userid>> in the SQL query in SQL Spreadsheet, SQL Subscription field shows * only selection option. Does anyone have idea how to solve this problem?
    Thanks in advance for your help.
    -SV

    Hi
    Okay i know this is a bit crazy way.....but i think this is the solution for your issue.
    Create a report without the where clause (<<useris>>) then add a filter (sql subscription) then you can find all the values that are there in the SQL field (try to increase the query limit it is set to 250 as default) then edit the spreadsheet and add the where clause (<<userid>>).
    This will help you having the filter and the dynamic text label. I think there is an issue when you try to filter it with a where clause.
    Hope it helps.
    CK

  • After "Configure Feature", "Changed By" field shows my name for most of work items

    I recently upgraded TFS from 2010 to 2012. And I am running "Configure Feature" for every project. The configuration ran successfully. However, when I run a query, the "Changed By" field shows my name for most of work items. I thought
    configuration should never touch the data. More interesting, I go to history of work items, there is no change by me at all. Now why did history and query show totally different data?
    Thanks.

    Hi Jason,
    You can create a new work item to have a check if the same issue occurrs. To configure features, you can refer to the links below to see if you configured correctly:
    https://msdn.microsoft.com/en-us/library/ff432837(v=vs.110).aspx
    http://blogs.msdn.com/b/visualstudioalm/archive/2012/05/09/how-to-configure-features-for-dozens-of-team-projects.aspx
    Please elaborate more details about the configuration feature steps if the issue persists. You can also run TFS best practice analyzer to see if there configuration issues.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • UI Field showing only integers

    Hi all
    I need to create a field on a form that only allows the user to input whole numbers (integers).
    I've implemented this as follows:
    private JFormattedTextField readTimeOut;
    protected void createComponents()
            NumberFormatter numberFormatter = new IntegerFormatter();
            readTimeOut = new JFormattedTextField(numberFormatter);
            readTimeOut.setHorizontalAlignment(SwingConstants.RIGHT);
    }This works in the sense that it only allows integer values in the field, and along with other code, does just about everything I need.
    The only problem I have is changing the number entirely. The numberFormatter will not let me delete the last character in the field.
    E.g.
    If the initial value is 600,000, and I delete the 6, the field shows 0. I cannot delete this zero so that the field is empty, which I need to do.
    If I delete the zeros one after the other, I am left with a 6 that I can't delete.
    This is not good, because to update the field from 600,000 to 12 (for example), I have to do the following:
    1. Delete all the zeros, leaving the 6.
    2. Enter 12, meaning the value in the field is now 612, or 126 depending on how the initial value was modified by the user.
    3. Delete the 6.
    I've looked at the NumberFormatter and IntegerFormatter classes and documentation but can't see anything that allows the field to contain blank values.
    Is there an option to allow an IntegerFormatter to have a blank field?
    If not, can anyone suggest another way of doing this?
    Thanks

    Kleopatra wrote:
    what is IntegerFormatter, custom class? Or did you mean:
    NumberFormatter numberFormatter = new NumberFormatter(NumberFormat.getIntegerInstance());    Anyway, what happens is that
    - NumberFormat doesn't accept null, throws a parse exception
    - JFormattedTextField doesn't accept values if the format objects
    That leaves 2 locations to tackle
    a) implement a custom format which does handle the null (as does SwingX NumberFormatExt)
    b) subclass JFormattedTextField and manually null the value in commitEdit if the text is empty
    CU
    Jeanette
    BTW: the Swing folks hang out in .. the Swing forum :-)
    BTW2: folks here seem to like wild guessing games <g>
    Edited by: Kleopatra on Apr 6, 2011 2:50 PMThanks for all the replies. I've got it working with a DocumentListener, but that loses the thousands formatting. Not a disaster, but something to consider.
    Jeanette, you're right, the IntegerFormatter is a custom class that extends NumberFormatter. I didn't realise this. I'm still fairly new to Java, and am still learning using existing code in the product I'm developing.
    Of the two options above, I think I prefer using a custom format. I'd assumed the IntegerFormatter class was a standard class, so hadn't thought of changing it. As that's already custom I can either change that or create my own version.
    Thanks for the help.
    Alex
    BTW: The Swing forum is well hidden. I've only now found it because you pointed out that it existed. ;-)

  • The recent upgrade for i-tunes prevents me from adding and using the Field, "Show". How can I add this field in i-tunes?

    The recent upgrade for i-tunes prevents me from adding and using the Field, "Show". How can I add this field in i-tunes?

    Hold down shift as you right-click > Get Info to get the old style dialog box.
    tt2

  • How to have a field show twice in the alv?

    hi,
        there are two questions about alv (OO).
       1. i want to make a field show twice in the ALV,. For example, value of first column is 'A', and now 'A' should also show in the fifth column. which method should i use? or other solutions?
    2. i have known two fields, and they are field 'A' and field 'Bbbb', how to have them show in the same column such as 'A Bbbb'
    Thanks in advance!

    Hello Daniel,
    There's no direct way to do this. however, it is technically possible to meet your requirement.
    1. The internal table should also contain another field for the 5th column. There should also be a corresponding entry in the field-catalog. Before calling the ALV Grid, the values for this field should be populated with the same values as the values in the 1st field.
    2. Again, the internal table should contain the corresponding field and the field catalog should have it as well. Before calling the ALV Grid, concatenate the values into this field and display them.
    I hope this helps. If not, please get back and we should be glad to help you.
    Regards,
    Anand Mandalika.

  • CS5.5 "also include these characters" field shows Chinese as squares

    We're having problems with embedding Chinese characters via the "also include these characters" field. It works properly in other computers with CS5 and earlier Flash versions we have used, but in CS5.5 (on one new computer with it on Windows 7) copy-pasting Chinese to this field shows the pasted characters as squares in the field.
    Even the font name below the field shows Chinese characters as squares.
    Any idea what the problem could be?

    Ok fixed thanks to your advice, Kenneth.
    I researched unicode & mysql and eventually found this page which got everything up and running properly: http://blog.al-aqel.com/programming/fix-and-store-unicode-in-mysql-php/
    As you said, set the character codes and collations in mysql to "utf8_general_ci" including server, database, tables & fields.
    Also needed was the addition of "mysql_set_charset('utf8');" to my PHP pages that accessed server. This was in addition to setting the charset to UTF-8 in the page's meta tags.
    Brilliant! Now have working simplified Chinese in my PHP pages, forms and MySQL database.
    Thanks again and hope this might help other people having similar problems.

  • Empty date fields showing in receipt

    Why do empty date fields show in the email receipt even though I have the "Include empty fields" de-selected in the email receipts section? Example from receipt shown.
    Date 1: 09/13/2013
    Date 2: -
    Date 3: -
    Date 4: -

    Hi,
    You will get email receipt and email notification if you check both options. email notification will have all fields summary including empty ones if check the option include a summary of the response data in the email.
    email notification title is "form name": Response Received.
    email receipt title by default is Form Submission Receipt: Adobe FormsCentral
    Please share your form to me if you do see empty field in receipt without checked include empty fields. Here is my email address: [email protected]
    Thanks,

  • HtmlText fields show up blank

    Hi
    I am trying to load some dynamic text fields with html tags as follows:
    _root.pag.pages.page12.home.htmlText = "<font face=\"Verdana\" size=\"24\" color=\"#FFFFFF\"><b><a href=\"http://www.sspaintings.com\" target=\"_root.pag.pages.page1\">Home</a></b></font>";
    _root.pag.pages.page12.about.htmlText = "<font face=\"Verdana\" size=\"24\" color=\"#FFFFFF\"><b><a href=\"http://www.sspaintings.com\" target=\"_root.pag.pages.page2\">About</a></b></font>";
    I have rendered them as html and selectable in the properties area.
    When I test the movie the fields show up with nothing in them.
    I have also used the _root.pag.pages.page12.home.html=true; but it does not work either.
    The texfields contain nothing. Are these commands not good for As1 - Flash 6
    Any insight will be appreciated. Thanks. Samantha

    Hi Ned,
    Thanks so much for your insight. Your comment on labeling it text as opposed to htmlText was really good.
    After I did that it still did not show. I used labels from other pages that were working and re-routed them to that page and it still did not do it.
    I realized that I had created those text fields as a copy paste activity from Frontpage into Flash. (Not that I think it should matter) but that was the only difference when I created that page. The other thing was that the textfields were all grouped in a movie clip something I tried to undo and it did not work it would go back and regroup them into a movie clip. I also tried naming the instance of the movie clip and adding it to the path but to no avail.
    So I just deleted that page and started from scratch with a page that already had fields in it and slowly changed everything to what I needed and it worked.
    The path is the same except the textfields have been simplified. You can see it in www.sspaintings.com>about>sitemap.
    (Sorry for the delay you hear in the music, there is a movieclip loading in the background which is doing this but I haven't fiugre out why)
    _root.pag.pages.page12.tf_1.htmlText="<font face='_sans' size='11' color='#FFFFFF'><b><a href='http://www.sspaintings.com' target='_root.pag.pages.page1'>Home</a></b></font>";
    _root.pag.pages.page12.tf_2.htmlText = "<font face='_sans' size='11' color='#FFFFFF'><b><a href='http://www.sspaintings.com' target='_root.pag.pages.page2'>About</a></b></font>";
    Also as to you input on Flash/SEO, thanks, I suddenly realized again how closed flash is to search engines.
    Thanks so much again for your thoughts.
    Samantha
    PS: Can you tell me how to write the tag so that the page opens inside the window and doesn't open another window of the movie?

  • I made a fillable form using indesign and then acrobat professional but need to have radio buttons trigger different fields showing in the form below them - is that possible and if so how do I do it??

    I made a fillable form using indesign and then acrobat professional but need to have radio buttons trigger different fields showing in the form below them - is that possible and if so how do I do it??

    What version of Reader are they using, exactly? And are you sure they're
    using Reader itself and not opening the file inside a browser window, for
    example?
    On Fri, Feb 6, 2015 at 5:24 PM, jessicao96457206 <[email protected]>

  • Not all fields show up on fields to be changed

    Why some fields that are selected in the planning level don´t show up in the tab fields to be changed? I have around 20 fields selected and only 10 are showing up....
    Is it because of the selection I´ve done in the planning package?
    Thanks
    Cris.

    <br>
    <FONT FACE = "Tahoma", FONT COLOR = "Blue">
    Hi
    <Br>
    If you have already selected some fields as <B> Fields for Conditions</B> then those fields won't appear in <B> Fields to be Changes</B> List.
    <Br>
    <Br>
    I hope you are aware of this.
    <Br>
    <Br>
    <Br>
    Cheers
    Abhijit
    </FONT>

  • Year field showing the future on Mac

    The year field on a track is showing up as "2018" on my mac and "2009" on my PC when I download the same track. Any ideas why this may be happening?
    Thanks,
    Jenny

    Same here. I decided to re-download all the Itunes U material I had before under podcasts (deleted from podcast section, the re-downloaded with get-all or subscribe depending on courses)
    While the file is downloading, the track show a proper release date (say Nov 3, 2007)
    Once it is downloaded, all tracks show a future date of June 24, 2018
    Apple, please advice

  • Unit of Measurement Field showing Gray while created asset master

    Dear All,
    When I am try to create the asset sstem is showing the Quantity Filed but the Unit of Measurement is showing in Gray.
    I also check the screen layout rule but still it not coming as an input field.
    Kindly help me out to resolve this ASAP.
    Regards,
    Sandeep

    Hi,
    Please check the screen layout assigned to the asset class under which you are creating the assets and then check the screen layout rules of that screen layout whether the field "Unit of measurement" is optional or not.
    Thanks Monoj

Maybe you are looking for

  • Can I print out the document formatting information for review

    Is there a way to print out, for example, all the paragraph format with their formatting details? I'd like the same for character formats, conditional text etc.? I'm a long time FrameMaker use and have built numerous templates over the years. The one

  • OS 10.5 color-wheeling for 10 seconds at a time randomly.

    Hello, I'm running a gma950 core 2 duo macbook with 2GB ram. Even as I type this, every app, the dock... everything, will freeze for 6-12 seconds and color-wheel. At such a time, only the mouse and hotcorners work. I can apple-tab through programs bu

  • How to hook up Macbook Pro to Television set

    As there's no HDMI port, how do I hook up my laptop to TV?

  • How to play swf file in flex builder3?

    Hi!!!!!! I have made a video player in Flex project ......In source of video display I have added the path of my swf file which is as follows: <mx:VideoDisplay id="player" source="C:\Documents and Settings\sachin\Desktop\absolute-values.swf" maintain

  • Image mapping and Master Detail Regions in CS3

    Excellent advice to leave a url. I think I am having a similar problem with conceptualizing datasets for utilization with image mapping. I obviously cannot use the Get Schema via the Attach New Data set icon because I have rendered my own Master regi