"How could I use the ' UTL_RAW. CAST_TO_VARCHAR2 ' function in apex?

"How could I use the ' UTL_RAW. CAST_TO_VARCHAR2 ' function in apex?

For what purpose?

It's a little too vague to be able to help. Maybe you could read this...

http://tkyte.blogspot.com/2005/06/how-to-ask-questions.html

See you soon

Ben

Tags: Database

Similar Questions

  • How not to use the squint no functionality?

    I forgot how not to use the squint no functionality. Can anyone help?

    18.0 Firefox was released last Tuesday, you need to update.

    See if this FAQ for NoSquint answers your questions.

    https://urandom.ca/NoSquint/#FAQ

  • How to use the Print Screen function?

    I've seen various descriptions of how to use the print screen function.

    It would be nice to actually tell one that works.  None have worked for me.

    [Fn] and Prt SCr does not work.

    CTRL and Prt SCr does not work.

    CTRL, Alt, and Prt SCr does not work.

    [Fn], Ctrl and Prt SCr does not work.

    If anyone knows the correct method to activate the screen capture function which would be a good thing.

    From the looks of things, HP has a big problem with this function.

    Here's a microsoft articleon the use of the screenshot function.

    This should answer your questions.

    Thanks for taking a peek.

  • How do I use the sony vaio VPCEC3S0E built in motion eye camera I have attached looking for the correct drivers but could not locate them

    How do I use the sony vaio VPCEC3S0E built in motion eye camera I have attached looking for the correct drivers but could not locate them

    Hello

    Troubleshoot camera connection
    http://Windows.Microsoft.com/en-us/Windows7/Troubleshoot-camera-connection-problems

    You probably need to recharge the device drivers and camera control software (usually included
    with the drivers and installed at the same time).

    Login as an administrator.

    Double-click Control Panel / Device Manager - Imaging - writing down of the brand and model of camera.
    on this subject and on the tab of the driver is version. Now, click on update drivers (who are unable to do anything as MS
    is far behind the pilots of certification). RIGHT click on the camera - UNINSTALL - REBOOT - it
    will update the driver stack.

    Now, go to the system manufacturer's website and download the latest driver for the camera and the other related camera
    software (if not more recent get the same).

    Download - SAVE - go to them and RIGHT CLICK - RUN AS ADMIN - reboot after each driver.

    Manually look at the sites of the manufacturer for drivers.
    http://pcsupport.about.com/od/driverssupport/HT/driverdlmfgr.htm

    Installation and update of drivers to 7 (update drivers manually using the methods above is preferred
    to make sure that the latest drivers from the manufacturer of system and device manufacturers are located)
    http://www.SevenForums.com/tutorials/43216-installing-updating-drivers-7-a.html

    Then let windows updates on however prevent loading of drivers who are often older than the
    those that you have installed. If updates suggests a pilot and then HIDE it and watch manually to see if their
    really is a more recent version (at the time system manufacturer and the sites of the manufacturer of the device).

    Stop Windows 7 to automatically install device drivers
    http://helpdeskgeek.com/Windows-7/stop-Windows-7-from-automatically-installing-device-drivers/

    How to disable automatic driver Installation in Windows 7 / Vista
    http://www.AddictiveTips.com/Windows-Tips/how-to-disable-automatic-driver-installation-in-Windows-Vista/

    Turn off Windows Update Device Driver search prompt in Windows 7 / Vista (for professionals,
    Ultimate and Enterprise)
    http://www.AddictiveTips.com/Windows-tips/disable-Windows-Update-device-driver-search-prompt/

    ----------------------------------------------------------------------------

    Check with the Sony Support, their online documentation and drivers (update or reinstall).
    and their forums.

    Sony - Contacts
    http://eSupport.Sony.com/us/Perl/contact-land.pl

    Sony - drivers
    http://eSupport.Sony.com/Perl/select-System.pl

    Sony - Support
    http://eSupport.Sony.com/

    Sony - Forum
    https://Forum.sel.Sony.com/?XID=M:Showcase:eSupport

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • I used the text tool function more than the reminder function, how do I get it back?

    I used the text tool function more than the reminder function, how do I get it back?

    Hi Slate7Berta,

    Please use Adobe acrobat reader DC Acrobat Reader DC Learn & support instead of touch Adobe, there seems to be a compatibility issue.

    Kind regards

    Nicos

  • How can we use the function of group based on time

    Hai sir

    I had a table containing fields

    EMPCODE NUMBER
    EMPNAME VARCHAR2 (25)
    BAR CODE VARCHAR2 (25)
    VARCHAR2 (25) RESPONDENT
    OUTTIME VARCHAR2 (25)
    INTRTIMEIN VARCHAR2 (25)
    INTROUTTIME VARCHAR2 (25)
    PERTIMEIN VARCHAR2 (25);
    PERTIMEOUT VARCHAR2 (25);
    DATE OF ATTEND_DATE;


    Who has six columns of time and I need to use the group function
    For example
    0815,0817,1230,1250,1645,1648,

    0815 should store in timein
    0817 must store in intrtimein
    1250 need to store in pertimein
    1230 must store in pertmeout
    1645 must store in intrtimeout
    1648 must store in the time-out period

    If it is possible using max and min function pls tell me.

    Thanks and greetings

    Srikkanth.M

    Hi, Srikanth,

    It would help a Lopez, if you posted CREATE TABLE and INSERT statements for a few lines of sample data and the results desired from these data.
    If you want a solution that works in your version of Oracle, say what is your version of Oracle.

    Are you trying to sort columns?
    In other words, you are waying that people can enter data in the six columns, in any order, and you want to reorder the values so that
    respondent<= intrtimein=""><= pertimein=""><= pertimeout=""><= introuttime=""><=>

    If so, you can unpivot data in 6 lines, use the ROW_NUMBER analytic function to number the lines in the order and their pivot then back in order:

    MERGE     INTO     table_x          dst
    USING     (     WITH  cntr as
              (       SELECT     LEVEL     AS n
                   FROM     dual
                   CONNECT BY     LEVEL     <= 6
              )
              ,     unpivoted     AS
              (     SELECT     t.empcode
                   ,     CASE     c.n
                             WHEN  1  THEN  intime
                             WHEN  2  THEN  outtime
                             WHEN  3  THEN  intrtimein
                             WHEN  4  THEN  introuttime
                             WHEN  5  THEN  pertimein
                             WHEN  6  THEN  pertimeout
                        END     AS tm
                   FROM          table_x     t
                   CROSS JOIN     cntr     c
              )
              ,     got_rnum     AS
              (
                   SELECT     empcode
                   ,     tm
                   ,     ROW_NUMBER () OVER ( PARTITION BY  empcode
                                            ORDER BY          tm
                                        ) AS rnum
                   FROM     unpivoted
              )
              SELECT       empcode
              ,       MAX (CASE WHEN rnum = 1 THEN tm END)     AS intime
              ,       MAX (CASE WHEN rnum = 2 THEN tm END)     AS intrintime
              ,       MAX (CASE WHEN rnum = 3 THEN tm END)     AS perintime
              ,       MAX (CASE WHEN rnum = 4 THEN tm END)     AS perouttime
              ,       MAX (CASE WHEN rnum = 5 THEN tm END)     AS introuttime
              ,       MAX (CASE WHEN rnum = 6 THEN tm END)     AS outtime
              FROM       got_rnum
              GROUP BY  empcode
         ) src
    ON     (dst.empcode     = src.empcode)
    WHEN MATCHED THEN UPDATE
    SET     dst.intime     = src.intime
    ,     dst.outtime     = src.outtime
    ,     dst.intrtimein     = src.intrintime
    ,     dst.introuttime     = src.introuttime
    ,     dst.pertimein     = src.perintime
    ,     dst.pertimeout     = src.perouttime
    ;
    

    It should work in Oracle 10 (and more).
    The PIVOT and UNPIVOT features introduced in Oracle 11 can make it a little simpler.

    Perhaps it would be better to require users to enter data in the right-hand columns.
    You can use CHECK constraints to ensure that intimate<= intrtimein=""><= pertimein=""><= pertimeout=""><= introuttime=""><=>

  • How to use the xp20 extension functions?

    Hello everyone,

    I want to use Java (JAXP) to perform XSL transformations using the xp20 extension functions (http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20).

    Transformation of"basic" is at work,
    Seller: < xsl: value - of select = "system-property('xsl:vendor')" / >
    Version: < xsl: value - of select = "system-property('xsl:version')" / >

    results in:
    Vendor: Oracle Corporation.
    Version: 2

    However, when I try < xsl: value - of select = "xp20:current - dateTime ()" / > (Yes, the namespace is declared), I get the following error:
    XML-22043: Fehler (error) bei Erweiterungsfunktion: method 'current-dateTime"non found
    (roughly: Error (error) according to the extension: "current-dateTime" method not found)

    This is after you have added the bpm - services.jar to my classpath. Before, I had a "class not found" (or something like that...).

    Assume that something is missing in my classpath - can I anyone tell me who I need to add the jar files and where to find them? This should be compatible with the suite and JDeveloper 10.1.3.4 SOA 10.1.3.4

    Thank you very much

    Finch

    4526876 October 9, 2006 bpm - services.jar (of soa_windows_x86_bpel_101310.zip)

    1211311 xmlparserv2.jar (from oracle xdk - 10.2.0.2.0)

    Don't run with all the exits, no variable set CLASSPATH, no ORACLE_ * defined variables:

    % java -cp "xmlparserv2.jar;bpm-services.jar" oracle.xml.parser.v2.oraxsl -w -v -debug -l input.xml -s date.xsl -r out
    Release version: Oracle XML Developers Kit 10.2.0.2.0 - Production
    1 XML document will be transformed using XSLT stylesheet specified in date.xsl with 1 thread
    Parsing file date.xsl
    Parsing file input.xml
    Transforming XML document specified in input.xml
    

    It seems to be a classpath issue. Try with java-verbose and you should see a line like

    ...
    [Loaded oracle.tip.pc.services.functions.Xpath20 from file://path/to/bpm-services.jar]
    ...
    
  • How do I use the recovery folder on the HDD repair Satellite A300

    Hi all

    I have Toshiba satellite A300, model No. PSAGCE-00C006AR,.

    My operating system is windows Vista Home premium.
    Recently, I was working on battery when my system is closed.

    When I connected charger and power he found that the display shows the message (Please wait) forever and does not allow me to enter my password.
    When I press the power button to shut down my PC and reboot in safe mode, I can enter my password and connect to my PC, and however, when I connect to the PC shows only black screen with pointer and nothing more.
    Start button does not respond, the icon my computer or all other icons do not appear on the desktop.

    I did the following steps in trying to repair my PC: -.

    1 I restarted my PC in safe mode with command prompt, you try to run chkdsk/r, however I got the error message that the disk is protected and that I can demand that it runs at the next reboot. I typed Y and restart, but chkdsk does not work although I restarted 2 times.
    2 I restarted my PC and select advanced option then startup repair problem, then I got the message that no problem was found.
    3 I also tried Toshiba HDD recovery, but could not find any folder recovery although there is about 1.5 GB partition that has everything.
    4 I tried the windows complete PC Restore, but I received a message that (a valid backup not found)
    5 that my PC is come without recovery CD, so I borrowed an and restart my PC from the CD and repair selected... etc, however I got the error message that the disk is write-protected once again.

    Any advice how I can get my rear work system will be appreciated and how do I use the recovery folder on the HARD disk and avoid the write-protected message?

    Best regards
    Alaa Mostafa
    [email protected]

    Hello

    Of course I don't know what the problem is exactly, but I'm confused on a few other facts.
    The fact is that Toshiba has created the reminder that informs the user on the first day that Toshiba doesn't offer the recovery DVDs and it is recommended to create such a DVD support immediately.

    Question about you: you created this recovery media?

    The Toshiba recovery image has nothing to do with the WinRE Vista 1.5 GB partition. Partition WinRE Vista feature. On new models of laptops Toshiba recovery image is saved in folder HDDRecovery on the second partition. If touch you didn t and if you didn t change anything with partitions you should be able to install Vista using this recovery image.

    After your computer is turned on press F8 and choose the first option (if available) computer repair. You can enter the Vista System Recovery Options. The last option should be Toshiba Recovery. If you didn t change anything, this option will be available.

    Check it out!

  • How do you use the Exp fundtion on the windows calculator

    How do you use the Exp function in the windows for the following calculator

    Exponential of the negative power of 0.5

    e

    I don't have.
    I couldn't find an e = 2.71828183 key on the windows calculator.
    I used Google's built-in calculator function.

    The windows calculator, you will need to enter:
    2.71828183 [x ^ y] (-0.5) =.
    ||

  • IM 10 atm installation initiated Preview and I want to know: is it easy to use the dual-boot functionality, if I have 2 hard drives

    Hello!

    IM 10 atm installation initiated Preview and I want to know: is it easy to use the dual-boot functionality, if I have 2 hard drives? I have win7 on my main drive (SSD) and I want to install 10 preview initiated a new partition on my 500 GB hard drive, I created. I'll have to change smth in the bios menu, or I will be asked to choose between win7 and win10 in a menu after boot?

    Yes, it's, it's just like installing Windows on another partition.

    To learn more:

    http://answers.Microsoft.com/en-us/Insider/wiki/insider_wintp-insider_install/how-to-dual-boot-the-latest-Windows-build-with/9695dfc7-1C13-4D8D-B10B-587e78c6ac36

  • Why I can't use the nested aggregate function?

    Hello Experts,

    Why I can't use the nested aggregate function? There is not an ora-00979 group by error of expression.

    Oracle Database 11 g Release 11.2.0.4.0 - 64 bit Production

    Select

       SUM (BOX WHEN (KSD_CREATEDATE BETWEEN TRUNC((KSD_CREATEDATE)) AND TRUNC(MIN(KSD_CREATEDATE)) +60) THEN 1  ELSE 0 END) AS col

    DE TABLE_3_4

    GROUP BY STC_FIRMANO

    Thank you

    GROUP BY will manage the SUM function, but the MIN is used incorrectly - use another SELECTION to get it, or work with only with a single line. Otherwise, you could do WITH... get the SUM of SELECT MIN...

  • I'm unable to use the Live View function when working with JavaScript in Dreamweaver.

    I'm currently trying to set up my own Web site with dreamweaver and am very familiar with the languages Java and JavaScript. However, whenever I try to use the Live View function it never let me. In addition, I can't get a preview of my work in a browser, as to do so is greyed out.

    However, I noticed that when using html in a project, all these functions are available. Any ideas how I can be able to use these features?

    Or perhaps you mean a .jsp file that is a Java Server Page.

    Modern web pages are almost entirely HTML code with CSS for styles and JavaScript for functionality added as games & slideshows or interactive menus.  It does not seem possible for me that you have been creating web pages entirely with JavaScript.

    Nancy O.

  • Could not use the Clone Stamp tool as the area to clone has not been set

    Freshly installed 10 items.  Can not use the option-click to define an area for the clone stamp.  The error I get is:

    Could not use the clone stamp tool because the area to clone has not been defined (option - click to set a sampling point).

    New Mac Mini.  Had the same problems in Elements 9 so I installed the trial of 10.  Is it an error of keyboard shortcut?  Do not have this problem with Elements 9 on my Mac Air or my Windows 7 system.

    I'm not a newbie and know how to use the tool clone.  I won't say that I'm an expert, so if it's something related to diapers please throw some ideas.

    Yes, that sounds like a problem of layers.  If the area that you use to define the source of duplication is a transparent area on one of your layers, it will not work.  Released from the Palette layers, then make sure that you use the area of the image (and not the mask area) - if the area of the image on the layer is active, it will have a border.

    Ken

  • How can I use the Variance in FR

    Hello

    How can I use the formula of variance in financial reports.

    I have in my grid 2rows


    ColumnA CloumnB Cloumnc
    1 2 4 10 total values
    2 values 1 2 3
    3

    Now I need to include a 3rd place called variance in the how I can do this.

    Please guide me the formula.

    Thank you
    I have w

    Hi, HV,.

    There is a default functions avilable in HFR to calecualate the Variance.

    To do this, you have to select the line formula or the formula column.
    in this column formla, you will be able to set these formulas

    Concerning
    Sri

  • I forgot my secret question to apple id answer... How could I solve the problem?

    I forgot my secret question to apple id answer... How could I solve the problem?

    Hello

    If you set an alternate e-mail address, you can reset your security questions. Follow the instructions here to check if this option is available:

    - If you forgot your Apple ID - Apple Support security questions answered

    Otherwise, you will need to contact the Apple Support. The information is available here:

    - Contact Apple for assistance with the security of the Apple ID - Apple Support accounts

    (I'm afraid that no one here can reset security for you - it is a community based on the user, not the Apple Support).

Maybe you are looking for