integer variable from session and not float

I set the session variable:
Select 10 double
The value entered is "10.0".»
I tried
Select to_number (to_char (10)) double
but it returns the same thing.

Is there a way to establish that it is '10'?

Hi Nir,

What would you say to select '10' of the double? Besides where and how do you refer to the variable in the web?

Rgds,
DpKa

Tags: Business Intelligence

Similar Questions

  • I need Adobe to renounce my muse project that I inadvertently have two and one is enough. How can I get in touch with a real person from adobe and not a forum?

    How can I get in touch with a representative of adobe flesh and real blood and not a forum? I have to cancel my subscription because I inadvertently 2 and I need to update my payment information, I did what adobe has suggested in their scripts, but nothing happened. Help me please.

    Sure! Their number is: 1-800-833-6687

  • Cannot print, cannot open a session and not to receive emails from your

    I started the impossibility to print anything. Firefox says that it cannot find my printer (I paraphase). When I try to find the settings to check, I can't find them. The options that others have listed to solve these things are options that I can't find.

    So then I tried to log on th the Firefox site but cannot, as I don't remember my password. Press the lost password option, key to my email address, it is said by e-mail has been sent. Received nothing while the other emails arrive in my Inbox. Check spam, trash and so on, but still no email to reset my password.

    Wait an hour and then left through the same process. Still not received any e-mail after checking the trash and spam and Inbox. Do not have a separate folder for Firefox or Mozilla.

    Had to create a second account to be able to post this message. I don't know where to turn or what to do next. Does anyone have an idea of what is going on please?

    Hi Sojourner,
    For a general printing resolution and options see:

    As for the question with the account, please PM madalina or myself for more investigations into the other account support.

  • How to get help from Mozilla and not volunteer professionals?

    Thanks to all the volunteers who help the people here. Are there own support workers of Mozilla that could be contacted? How can I contact them?

    Mozilla employees see here sometimes, but rarely on the weekends. There is no way to contact them directly.

  • Received phone calls from Adelaide number telling me that my computer will crash in two days, if I do not open a session and follow his instructions because of Trojan virus

    original title: Trojan warnings

    Received phone calls from a number of Adelaide telling me that my computer will crash in two days, if I do not open a session and follow his instructions because of Trojan virus.  Nobody gave his name and phone number and said she is Microsoft?  She also told me that it was free and part of Windows security. How will I know if it is authentic or not?

    Hello

    It's a SCAM

    Microsoft does NOT contact you unless you have for them to

    read this:

    http://www.Microsoft.com/security/online-privacy/msName.aspx

    Microsoft has none of the unsolicited telephone calls to help you fix your computer

    In this type of scam cybercriminals are calling you and claim to be of Support technique Microsoft. They offer help with your computer problems. Once scammers have earned your trust, they try to steal and damage your computer with malicious software, including viruses and spyware.

    Although the law enforcement can trace phone numbers, often authors use pay telephones, disposable cell phones or stolen cellular phone numbers. Better avoid fooling themselves rather than try to repair the damage afterwards.

    Treat all unsolicited sceptically telephone calls. Don't provide personal information.

    If you receive an unsolicited call from someone who claims to be from Technical Support Microsoft, hang up. We do not have such calls.

    If you think you might be a victim of fraud, you can report it. For more information, see: what to do if you think you have been scammed.

  • iteration signed integer and not a integer unsigned, why?

    I was wondering if there is a reason to keep the iteration of a loop to a 32-bit signed integer variable/indicator.

    He will never take a negative value... then why sign; unsigned could serve the purpose

    Bloop Shah wrote:

    but it wouldn't be better to introduce the NaN in full to assign a set bit just for a - 1?...

    who and where negative numbers are used?

    or is there something more than what satisfies my intelligence?

    Integers use every bit, which means that each combinations only bit is a real value. It must be this way to the full support of all the features of math. For example, if you take the difference between the two U32s tick counts, you get the correct time (as long as it is shorter than 2 ^ 32ms), even if the counter wrapped around between the two graduations.

    Because of the representation of the floating point (mantissa from the exponent, sign) numbers, we can define combinations unusual bit with a special meaning (NaN, - Inf + Inf, etc.). It is not possible for integers.

  • Passing variables from flash to php script - does not!

    Hey everybody. I was wondering if someone could help me. I use as2 to pass a variable from flash to my php and nothing happened! Here's the action script code that I put on my button:

    (release)

    {

    Amount.Text = 5;

    Form1 = new LoadVars();

    Form1.amount = amount.text;

    form1.sendAndLoad ("http://mywebpage.com/test.php", rise, "POST" ');

    }

    The amount of '5' is now in a dynamic text field with the variable name and instance of amount (which, in the future, will be hidden). This works very well when the button is clicked. What I'm trying to do without success, is to get this value of '5' to my test.php and did echo and it happens simply not . It comes to my php script:

    <? PHP

    $form_inp = $_POST ["amount"];

    If ($form_inp == "'")

    {

    Print "nothing entered < br >".

    }

    on the other

    {

    Print "you entered: $form_inp";

    }

    ? >

    I'm getting "Nothing entered" every time.

    I've tried different ways for the amount.text such as:

    (release)

    {

    Amount.Text = 5;

    Form1 = new LoadVars();

    Form1.amount = this. Amount.Text;

    form1.sendAndLoad ("http://mywebpage.com/test.php", rise, "POST" ');

    }

    and

    (release)

    {

    Amount.Text = 5;

    Form1 = new LoadVars();

    Form1.amount = this ._parent. Amount.Text;

    form1.sendAndLoad ("http://mywebpage.com/test.php", rise, "POST" ');

    }

    etc...

    I also tried to change the variable name in the function sendAndLoad amount to form1 as follows:

    (release)

    {

    Amount.Text = 5;

    Form1 = new LoadVars();

    Form1.amount = amount.text;

    form1.sendAndLoad ("http://mywebpage.com/test.php",form1, "POST");

    }

    and still nothing.

    In my php file, I even tried the GET instead of the POST and it always turns out nothing.

    <? PHP

    $form_inp = $_GET['monto"];

    If ($form_inp == ")

    {

    Print "nothing entered < br >".

    }

    on the other

    {

    Print "you entered: $form_inp";

    }

    ? >

    Additional info:  I put the .swf file and at the same level-.php file in the same folder on my server just to be safe, and the dynamic amount.text text field and button are at the same level in the .swf file.

    Anyone can shed some light on my situation... pretty please? I'm out!

    Thank you very much.

    Ok. So, do not let this thread unanswered, after a looooooong of trial and error, I went to as3 and began to do some testing. It turned out that the register_globals was off on my site and that is why I did not receive the variable passed with the $_POST in my php. So what I finally proposed is the following:

    In my fla/swf doc:

    to import flash.net.URLVariables;

    import flash.net.URLRequest;

    import flash.net.sendToURL;

    var urlVariables:URLVariables = new URLVariables;

    urlVariables.amount = "5";

    var urlRequest:URLRequest = new URLRequest ("http://mirador.mx/oaxaca/disco/receive_test.php");

    urlRequest.data = urlVariables;

    sendToURL (urlRequest);

    In my php file:

    $amount = $_GET ["amount"];

    echo "' AMOUNT IS:". " $amount;

    Now for all of you who have been following this thread, or which can be read in the future, I know that we we started with AS2 and finishing here with AS3 but I didn't know why it worked until I I'm so fed up I've changed in AS3 to see if I could understand. I, like many others I guess, felt a bit intimidated with AS3 and was unwilling to give it a try, but I highly recommend that you dive into it because once get you a grip on it is much more functional.

    So I m going to mark this thread as a response and hope it saves someone else all the time and the frustration that he made me... Good programming!


  • Not different session among v$ session and parameters of v$ resource_limit

    Dear Frieends,


    I have a confussion on two parameters, one is "v$ session" and another "V$ resource_limit. Look at the following result:

    SQL > select to_char (sysdate, ' ' Dy DD-Mon-YYYY HH24:MI:SS) as 'Current time' from dual;

    Currently
    ---------------------------------------------------------------------------
    Monday, March 9, 2009 17:02:06

    SQL > select count (*) in the session of v$.

    COUNT (*)
    ----------
    271

    SQL > select * from v$ resource_limit where resource_name = "sessions";


    RESOURCE_NAME CURRENT_UTILIZATION MAX_UTILIZATION INITIAL_AL LIMIT_VALU
    ------------------------------ ------------------- --------------- ---------- ----------
    sessions 280 408 445 445


    I see here that at a point given to the database, the number of meeting of the session $ v "271" so that the number of session in the "v$ resource_limit" is "280". Here, I get some differ among these parameters.

    Everybody would say please why the number of sessions differ between v$ session and parameters of v$ resource_limit.

    Waiting for your kind response...

    There are several bugs related to v$ resource_limit and current usage.
    For example check metalink Note 3896119.8

    and this current_utilization rapidly changing over time. So it can be simply you are not able to measure at the same point in time both views.
    And v$ session is most trustfull to find current sessions.

  • How to get the phone and messages back in my dock apps? And for some reason, I discover now all my app pages from the middle of my phone and not at the top?

    How can I get the phone and messages apps in my dock? And for some reason, I discover now all my app pages from the middle of my phone and not at the top?

    Try

    Settings > general > reset > reset home screen presentation.

    Note: All other applications will be organised by alphabetical order.

  • Cannot access my Comcast mail since the last update. I can access it from Safari and Microsoft Windows, but generally do not either of these browsers use

    Cannot access my Comcast mail since the last update. I can access it from Safari and Microsoft Windows, but generally do not use either of these browsers. I chatted with Comcast and they are the ones who asked me to try to gain access to other browsers. And, as noted, I managed. Only my opening my email to Comcast.net inhibits the Firefox, the browser that I use on a regular basis because of this problem I can't use Firefox.

    The reset Firefox feature can solve a lot of problems in restaurant Firefox to its factory default condition while saving your vital information.
    Note: This will make you lose all the Extensions, open Web sites and preferences.

    To reset Firefox, perform the following steps:

    1. Go to Firefox > help > troubleshooting information.
    2. Click on the button 'Reset Firefox'.
    3. Firefox will close and reset. After Firefox is finished, it will display a window with the imported information. Click Finish.
    4. Firefox opens with all the default settings applied.

    Information can be found in the article Firefox Refresh - reset the settings and Add-ons .

    This solve your problems? Please report to us!

  • I just bought an Iphone 6s and not yet am possession of en from the Sim Card. Ook, do you know if I can use the phone including applications via Wifi and put the chip later? Thank you. Renault JL

    I just bought an Iphone 6s and not yet am possession of en from the Sim Card. Ook, do you know if I can use the phone including applications via Wifi and put the chip later? Thank you. Renault JL

    No, because if you bought a new iPhone, then you need a SIM card to activate it before you can use the wifi applications.

    This is a phone after all, you don't need a sim card any to be able to activate it.

  • Problems with WiFi from Toshiba and their lack of support - you're not alone

    For those of you out there problems with WiFi on a Toshiba laptop, you're certainly not alone.

    Over the past years, I have noticed a growing number of different brands and models of computers laptop toshiba and laptops with the same problem.
    Last year, 100% of the toshibas that came in my workshop have had this problem, it is about 75% of the laptops that I fixed.

    These models have all hardware wifi (Agere, Intel and Realtek)

    The wifi switch is on, on the same computer, some programs to detect as being market, others see it as extinct.
    What, it doesn't connect to a same wireless router when used to.

    Responses of toshiba were the usual non-professional form response from: it must be the router, try to flip the switch, you have updated the bios?, update the drivers et al.

    It is a software problem, and given the number of people on this forum talking about the same issue, it's a great.

    Often, I came across the issue of windows for communication services wireless disabled by software of Toshiba and I believe, that it is a conflict between tosh software and various other (zone alarm, windows and al.)

    In some cases, the software seems to intervene and to corrupt the OS from windows drivers and interfere with their implementation and enforcement, which is worrying, the software doesn't have to touch all areas. (if not, what is the point of a BONE in layers)

    I sometimes managed to force to work (for example manually restart the services), but these solutions are not a "clean way" of doing things.

    The most reliable way to solve this problem seems to be, backup your data and reformat back to the manufacturer's specifications, and then immediately uninstall the software from toshiba and update the drivers terribly old (even those on the site are about one year more up-to-date for the model I'm working currently on.) Unfortunately most of my clients is companies that need a LOT of data stored in different saved locations, then a ton of programs specialized to be reinstalled, which is slow and costly.

    Message from TOSHIBA:
    Please make it a sticky in this forum for all the REAL solutions, not one of the threads that I watched with your suggestions has been resolved.

    If there is little no support for your products in this regard, I will contact the ACCC, choices, and associations of trade fair with an open letter that I ask all customers affected to sign, and I will put a national call for people with the same problem to come forward.

    I would like to ask also if you encounter a problem where your wifi stopped working and it does not detect or work, please just post "bump" under here so that we can keep way reasonably clutter free.

    I used to recommend Toshiba and Asus for laptops, now, this list is one.

    Greetings from the Australia (aus site sent me here for the forums)

    Damien Holley

    +@lonetraider+
    You can do what you want but as mentioned above; WiFi problems are not specific to a laptop manufactures, you'll notice WLan issues on computers (laptops, desktops computers) all manufactured products.
    I had 4 different books of four various manufacturers and ALL had problems of WiFi, but most problems could be solved by the driver update, change, or reset of the router are.

  • Reception of phone calls from a person claiming to be from Microsoft and informing me that I have not responded to the notice of my computer.

    One scam or not?

    I get phone calls from someone saying that he comes from windows and he tries to help me with my IP address.  He claims that I have not responded to the notice on my computer.  When I asked for a phone number to remind him to he gave me 516-628-7488 and I called and it sounds right.  Have I been scammed and someone is trying to hack into my computer?

    I get phone calls from someone saying that he comes from windows and he tries to help me with my IP address.  He claims that I have not responded to the notice on my computer.  When I asked for a phone number to remind him to he gave me 516-628-7488 and I called and it sounds right.  Have I been scammed and someone is trying to hack into my computer?

    It's a scam.

    I'm glad you don't fall for it.  All other calls suggest that tell you the caller you brought calls to the police who should dissuade continue to harass you.

    See the following links for more information:

    http://www.Microsoft.com/security/online-privacy/avoid-phone-scams.aspx

    http://www.mypchealth.co.UK/GuideScam.php

    http://ask-Leo.com/i_got_a_call_from_microsoft_and_allowed_them_access_to_my_computer_what_do_i_do_now.html

  • "Error message: Verifing DMI pool Data data ', 'Boot from CD' and Vista will not start.

    Vista will not start. Yesterday I had a remote assist of a tech trade SPS who took several Java updates and installed the recommended Java version. Until I left work the day I closed my computer so that he could install the updates from Microsoft. After the updates were finished I he turned and left for the day. When I arrived this morning, I had was a black screen and 2 lines of text following: 'Verifing DMI pool data' and 'Boot from CD' and a cursor flashing beneath them. I downloaded and executed a Western Digital utility that showed no problems with the hard drive, put in on the installation disc repair service is no error. I did a system restore to a point since yesterday morning, and Vista still does not start. Any ideas or suggestions?

    Hi JohnHorky,

    Step 1:

    First check and make sure that all physical connections on the computer are correct.

    Step 2:

    Alternatively, you can try to run a Checkdisk and check.

    a. Insert the installation disc.

    b. restart your computer.

    c. click on the Start button, click the arrow next to the button lock and then click on restart. If you are prompted, press any key to start Windows from the installation disc.

    d. choose your language settings, and then click Next.

    e. in the System Recovery Options menu, click command prompt

    f. at a command prompt, type the following command and press ENTER

    Chkdsk /f /r X: (drive letter)

    Note: When you run the checkdisk, there are risks of data loss you can take a backup before starting the checkdisk.

    g. press y when you are prompted to check the drive the next time the system restarts.

    h. close all applications and restart the computer.

    Note: When you run the disk check, there are chances of losing data if you can take a backup before starting the checkdisk.

    Step 3:

    Check if the automatic hard drive in the BIOS (Basic Input/output System) is enabled and save settings and check if it works. If it doesn't, contact the manufacturer of the system for more support options.

    I also suggest that you install the latest update of the basic system of input/output (BIOS) on the computer by contacting the manufacturer of the computer and check if it helps.

    Important: Change to the BIOS/complementary metal oxide semiconductor (CMOS) settings can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the configuration of the BIOS/CMOS settings can be solved. Changes to settings are at your own risk.

    Hope this information is useful.

  • I bought the cc, the money has been debited from my account, but there is no notification to my adobe account and not to my mail, what im going to do?

    I bought the cc, the money has been debited from my account, but there is no notification to my adobe account and not to my mail, what im going to do?

    Since this is an open forum, not Adobe support... you must contact Adobe personnel to help

    Chat/phone: Mon - Fri 05:00-19:00 (US Pacific Time)<=== note="" days="" and="">

    Don't forget to stay signed with your Adobe ID before accessing the link below

    Creative cloud support (all creative cloud customer service problems)

    http://helpx.Adobe.com/x-productkb/global/service-CCM.html

Maybe you are looking for

  • (Redirected) I ordered does not care a 2.7 GHz and installed a 1.7 GHZ-Dell

    After years of shopping and to recommend the Dell brand, I came across a problem of factory and Dell hell simply.  I ordered a laptop that has been clearly described as having a clocked at 2.7 GHZ, and when I was not able to install a program last ni

  • Laptop is running slow, loses connectivity every now and then!

    Hello It's a laptop Dell Inspiron Windows 7. It is about 3 years, 2 years it works fine, however the last 6-8 months it is slow but also loses wireless connectivity every now and then. I tried with a different laptop internet connection and it works

  • accidentally ejected DVD player

    Hi, in the mist of the SAG in the afternoon, I thought I should 'eject' DVD player as you would with a USB key.  Of course, it wasn't the thing to do, and now I can't read whatever it is the DVD drive out of service. What should I do?  I can not find

  • Error message - monitor profile appears to be defective

    Hello worldI recently bought a Samsung U32D970 (4 k, Adobe RGB). It comes with a monitor profile (U32D970Q - Adobe.icm) that I have configured in Windows Color Management (it's on Windows 7, 64-bit).Whenever I start Photoshop (SC 6 or more recent CC)

  • Buy Creative Suite 6 Web Premium for PC, but now I have a Mac... possible to use on Mac? How?

    I bought 'Adobe Creative Suite 6 Web Premium' for my PC.  I have the original disks, packing, serial number, etc, and I uninstalled it from my old PC.  I would like to know if and how I can better use this product on my MacBook Pro since I no longer