Support for  TREAT() function

Please help me!
I am working with object relational features in Oracle and I have tried using the TREAT() function. I get this message "ORA-03113: end-of-file on communication channel" every time I use it in the SELECT statement. If Oracle XE support for TREAT() function?

l_sql:=
'select ref(c) obj_ref, value(c) obj from PFO_OBJ_OPERATIONS c '||
' where value(c) is of (PFO_OT_DIN_OP) and treat(value(c) as PFO_OT_DIN_OP).code_calc=:code_calc';
I tried to execute this statement in SQL Plus and I faced this error “ORA-03113”
Probably the problem in something else, not in the statement?

Similar Messages

  • End of support for AD functional level?

    Has anyone ever seen something from Microsoft regarding their support policy for AD functional levels?
    Should one assume that since Windows Server 2003 support will end in July 2015, that this would indicate that the "Windows Server 2003" domain and forest functional levels would also become unsupported at that time?

    Hi,
    As far as i know the forest and domain functional levels don't have a support lifecycle. 
    The FFL and DFL only enable new features in the new domain. So i don't think it is really something that can be put into a support contract as such and therefor doesn't have a support lifecycle associated with it. 
    Thanks
    Denis
    Regards,
    Denis Cooper
    MCITP EA - MCT
    Help keep the forums tidy, if this has helped please mark it as an answer
    Blog: http://www.windows-support.co.uk 
    Twitter:   LinkedIn:

  • TopLink support for Stored Functions

    I know that TopLink supports PL/SQL stored procedures. What I haven't been able to figure out is whether or not TopLink also supports functions as well. Is there any way to execute a PL/SQL function using the TopLink APIs? Thanks. -Michael-

    You can find additional information (including examples of usage) on using Stored Functions in the TL Dev Guide: http://download.oracle.com/otn_hosted_doc/toplink/1013/MAIN/_html/qrybas004.htm#BCFBBJBJ

  • Support for DbXml specific functionality in XQuery vs. Shell or API

    Is / will there be any support for doing common commands in pure XQuery rather than just programmatically or through the shell? For example, in the shell I can create / list / delete indexes on a container, output query plans, etc. Are the same functions that are called through the shell available as XQuery functions? possibly in a dbxml function namespace?
    In a related question, but possibly deserving of a new thread if it doesn't already have one - I know XQuilla has the ability to call registered external functions from parsed XQuery, is there a way to tell DbXml to register a function with XQuilla's static context before using it? that would make it possible for me to add the functionality described above myself without disturbing your distributed code.

    Not so handy with C++ (my everday languages are PHP and Java), but if you say it can be done then I'll take a hack at it. If you happen to have examples of how other people have done it and you could point me at them it would be marvelous.
    To answer your second question: "bingo." It mostly means less interface work and brings it closer to what SQL can do in relational databases.
    The project allows the end user to define their own document structures (schema definitions more or less) and then create instances of these documents in a XML editing interface. For each document type, the end user is also able to define a set of named queries (abstracted function declarations) which lets us captures business rules without customizing our PHP code. Because the structure and queries that will be used against the documents are user defined its fairly impossible for me to automatically setup adequate indexes for the container of each set of documents. So I need an interface to allow the user to create / review / delete the indexes themselves.
    We've already created an interface that allows the user to execute arbitrary queries against a selected document. In the future we'd also like this same interface to do result set based content updates (through the XmlModify class) and whole document addition / replacement. So inclusion of index control makes sense as well. We can find ways to use the APIs, it just seems like this could benefit more than just our project.
    Placing the functionality from the shell into xquery extension functions seems analogous to having the UPDATE, DELETE and CREATE syntaxes of SQL.

  • Disabled scan functionality of HP Officejet 4500 Wireless with 10.9.1. HP says this printer is not supported for 10.9. Is there a solution?

    HP Officejet 4500 Wireless with 10.9.1 - Problem is not the printer, just the scanner. The scanner seems to be working but the saved files are not good images, just a bunch of scanned lines. My printer shows up under Preferences>printers and Scanners.
    I have found a clumsy work around  - accessing the scanner under Preferences>printers and Scanners allows me to produce a savable file. Problem is I loose functionality provided in the standard HP mode. Specifically I cannot change the image size. Doing that under Preferences>printers and Scanners just makes the window around the picture larger, it doesn't scale the image itself.
    My HP connection is strictly with USB, I do not use the wireless feature.
    HP tells me this printer is no longer supported for 10.9 Maverick. Is there anything else I can do to regain the scalable image size functionality with this printer/operating system combo?
    Thanks,
    Rcintio_Gray

    I hear ya. My son and his young growing familiy live in Torrey Heights near SD and I have a daughter in FL. They are smart kids.
    Thanks again

  • Support for some IS functions added

    Support for the following functions has been added in the SP1:
    ISERR
    ISERROR
    ISEVEN
    ISODD
    ISLOGICAL
    ISNONTEXT
    ISTEXT
    TYPE
    It looks like they did not get to the user guide list yet.
    Margaret

    The new functions were relatively late additions, therefore they could not be added to the User Guide. They are addressed in the Release Notes. The most current version of the Release Notes can be found attached to the top post in this thread:
    [Support for some IS functions added;

  • Which domain and forest functional level is supportted for the "Active Directory Resource Pool Synchronization"?

    Hi all,
    I'd like to confirm which Domain/Forest functional levels of Active Directory is supported for "Active Directory Resource Pool Synchronization" in Project Server 2013.
    I guess that 2003 or later is supported, but my customer required reliable sources.
    I googled and searched article at TechNet, but I couldn't find.
    Could anyone inform me the article about that?
    Thank you in advance.
    Kaori.

    Hi Michael and all,
    Anyway I solved this issue.
    I couldn't find article that I desired, so I asked advice to my colleagues and they told that the functional level 2003 or later are supported in their experience.
    In addition, I found these articles about SharePoint sync limitations.
    Members of the domain local group cannot view a Microsoft Office SharePoint Server 2007 Web site
    http://support.microsoft.com/kb/932378/en-us
    SharePoint supportability of Read only Domain controllers
    http://support.microsoft.com/kb/970612

  • Why Segment shrink is not supported for tables with function-based indexes

    As we all know , Segment shrink is not supported for tables with function-based indexes.
    But i'm very confused .
    Why Segment shrink is not supported for tables with function-based indexes ?? what's its essential?

    Creating a function based index creates a hidden virtual column (you'll see it if you query user_tab_cols) and once you index a virtual column you can no longer shrink the table:orcl> create table t1(c1 number,c2 as (c1 * 2)) segment creation immediate;
    Table created.
    orcl> alter table t1 enable row movement;
    Table altered.
    orcl>
    orcl> alter table t1 shrink space;
    Table altered.
    orcl> create index i2 on t1(c2);
    Index created.
    orcl> alter table t1 shrink space;
    alter table t1 shrink space
    ERROR at line 1:
    ORA-10631: SHRINK clause should not be specified for this object
    orcl>so the issue is not with function based indexes per se, it is a level beneath that. Perhaps because the virtual column has no physical existance, when the row is moved there is no reason for Oracle to realize that an index needs updating? I haven't attempted to reverse engineer this, I would be interested to know if anyone else has.

  • What is support pack for NW04 for print functionality

    what is support pack for NW04 for print functionality????

    Hi Kavita,
    printing is no fun with web dynpro, as the web-centric solution to useJavaScript is not supported in WebDynpro.
    I've spend lots of time with this issue and my experience is that if you want to get a proper printout you will have to rebuild the page (e.g. with XML) and render a printable version (e.g. with XSLT). Every other solution might work but will look crappy.
    regards,
    Christian

  • JDBC Driver for MySQL database which should support JDBC2.0 function

    Hi, Guys,
    I'm using JDK1.3 and mm.mysql-2.0.4-bin.jar in Windows NT. When I run following program, I got the error: java.sql.SQLException: ResultSet not updatable. (the function rs.last() is working).
    Based on the documentation, mm.mysql-2.0.4-bin.jar driver should support JDBC2.0 function, but in fact, it's not. So, what's wrong or where is the correct driver?
    Thank you in advance anyway!
    import java.sql.*;
    import java.sql.ResultSet.*;
    import java.util.*;
    public class BridgeMysql{
    public static void main (String[] args) throws Exception {
    String sTable = "test";
    try {
    Class.forName("org.gjt.mm.mysql.Driver").newInstance();
    Connection conMysql = DriverManager.getConnection("jdbc:mysql://localhost/myDatabase?user=user&password=password");
    Statement st = conMysql.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE);
    ResultSet rs = st.executeQuery("Select * from "+sTable);
    //rs.last();
    rs.moveToCurrentRow();
    System.out.println("Table "+sTable+" contains "+String.valueOf(rs.getRow())+" rows");
    rs.close();
    st.close();
    conMysql.close();
    catch (Exception e)
    System.out.println(e);

    Thought I might add something interesting I found.
    You need to include the field in your primary key. I only have one field in the key so I dont know how it works if you have more than one key.
    Makes sense considering Mark stated that you need the primary index defined. Looks like you need the fields as well from the select statement.
    Can anyone comment on why this is?

  • Support for Array Binding and PL/SQL tables (IN, INOUT, or OUT)

    I have attempted, unsuccessfully, to use array binding in stored procedure/function calls where the sp/sf has parameters that are PL/SQL tables. I have seen the topic floating around in this forum, but I have not seen the explicit questions:
    - Does ODP.NET support PL/SQL tables as IN, INOUT or OUT parameters to stored procedures/functions?
    - Will any planned ODP.NET release support PL/SQL tables as IN, INOUT or OUT parameters to stored procedures/functions?
    I am aware that I can use REF CURSORS to handle the OUT situation, but I need to make a design decision concerning supporting parameters of IN and INOUT PL/SQL tables.
    Thanks.
    James

    You really MUST do this!! - i.e. include support for PL/SQL table parameters (IN INOUT and OUT) in a future release of ODP.NET.
    PL/SQL tables are a fundamental type in Oracle stored procedures and you will be preventing a huge number of existing projects from migrating to .NET if you don't acknowledge them as part and parcel of Oracle programming.
    I sincerely hope support for PL/SQL table parameters is treated as a serious issue.
    Think what a coup it would be for you over Microsoft (who don't currently support PL/SQL tables with their .NET native provider for Oracle and don't look as if they will at least in the short term)!
    Please, please, please!

  • Help - Class name and descriptions for a function location.

    Hi Guys
    i have to write a report that displays the class and class descriptions for a function location. the user passes in either the function location(TPLNR) or the class name and  the report should display the the class characteristics and resp. values. Is there a FM that i coud use?
    please help.
    many thanks.
    seelan.

    sadiepu1 wrote:
    When I set up Words with Friends on my Fire it asked for my username and password which from a previous reply to my inquiry above stated that the S 3 doesn't store due to privacy issues. I have tried all my usual combinations of usernames and passwords and my Fire won't let me access the game as it keeps telling me that one or the other is not correct. I have deleted the app from my Fire and re-downloaded it but have the same error comes up. I have accessed the Words with Friends support both on my phone and their website but there is no live chat. I might have to take both to a Verizon store. Also, my Fire won't let me access the game without a correct username and password. To say that I am frustrated would be an understatement as well I have tried everything I can think of with no luck! Thanks for any help you can give!
    Did you use facebook to log in? 
    Verizon will not be able to help you retrieve any of the information you need.  You will have to contact Zynga.

  • Open letter to Crative Labs regarding lack of support for soft subtit

    Dear Creative Labs
    I'm a proud owner of a Creative Zen Vision W. In this day and age you either have to be a millionaire or truly love videos to buy one; I belong to the secound group.
    We need support for soft subtitles in Creative Zen Vision, Vision W, Vision:M and so forth. Simply put. It can be done with 0 lines of code in the firmware source, and you know it. Everyone are sick and tired of trying to find workarounds.
    We are videolovers; We are not audiophiles who needs an alternati've to iPod that happens to play footage of our kids practicing soccer and show pictures of our fishing tri
    ps.
    Treat us with some respect. People have been begging for soft subs support since the Vision was released in 2005, and you haven't done **bleep**.
    I tried to write a "down to earth" letter here, but you're truly pissing me off.
    Yours truly (untill I discover another portable media player that supports soft subs),
    Daniel AndersenMessage Edited by Otaku on 02-2-200703:3 PM

    Dear Creative Labs
    I'm a proud owner of a Creative Zen Vision W. In this day and age you either have to be a millionaire or truly love videos to buy one; I belong to the secound group.
    We need support for soft subtitles in Creative Zen Vision, Vision W, Vision:M and so forth. Simply put. It can be done with 0 lines of code in the firmware source, and you know it. Everyone are sick and tired of trying to find workarounds.
    We are videolovers; We are not audiophiles who needs an alternati've to iPod that happens to play footage of our kids practicing soccer and show pictures of our fishing tri
    ps.
    Treat us with some respect. People have been begging for soft subs support since the Vision was released in 2005, and you haven't done **bleep**.
    I tried to write a "down to earth" letter here, but you're truly pissing me off.
    Yours truly (untill I discover another portable media player that supports soft subs),
    Daniel AndersenMessage Edited by Otaku on 02-2-200703:3 PM

  • MST Support for MacBook Pro Retina Late 2013 - DisplayPort 1.2 - Will it ever happen? (with sources)

    So back in October, I purchased a brand new Macbook Pro Retina (MBPr), fully loaded with top of the line specs.  I was soooo excited to have Thunderbolt 2 tech which Intel AND Apple describes as having DisplayPort 1.2a compatibility - which up to this point is unfortunately NOT the case.  The point of the information/questions and requests in this article is to engage a conversation about the issues of not having MST support after Apple falsely mislead their consumers to think otherwise - especially when it is clear the MBPr is capable.  Please read on...
    Apple advertises that the Thunderbolt 2 ports on BOTH the MBPr and the new Mac Pro (NMP) will have 4K Display support with the famed 20gb/sec Ports (DisplayPort 1.2 only requires a little above 17gb/sec).  Now that the 10.9.1 update has been released, we have failed to see MST or Multi-Stream Transport enabled on the MBPr Late 2013.  Now, as for the New Mac Pro- it DOES have MST enabled in 10.9.1 with the AMD GPUs.  For all of you out there that's questioning what this means, short answer is basically the Mac Pro will be able to power a 4K Monitor at 60Hz through the Thunderbolt 2 Port but the New MBPr is stuck with only HDMI 1.4 support which tops out at 4K 30Hz. 30Hz is unacceptable for anything but movies or a photo slideshow.  At 30Hz the cursor will jump across the screen, eliminating any of the benefits of 4K.
    BUT it gets worse...
    Apple can be seen advertising that the new MBPr 15" model can power a 4K monitor THROUGH the Thunderbolt 2 Port here: http://www.apple.com/thunderbolt - This article quotes the following:
    "Now with Thunderbolt 2 built into the new Mac Pro and MacBook Pro with Retina display, you can connect the latest 4K desktop displays and get double the bandwidth for your peripherals. And the two generations of Thunderbolt technology are compatible with each other."
    Does this not let the consumer assume that the newest MBPr will be able to drive a 4K display through the Thunderbolt 2 Port?  I would say yes it does, but at the time I wrote this, the TB2 Ports can't power a 4K display because, as previously stated, MST is disabled in Mavericks for the 15" MBPr Late 2013.
    NOW, later on Apple posted the following article on 4K support here: http://support.apple.com/kb/HT6008
    4K support on the MacBook Pro (Retina, Late 2013)
    MacBook Pro supports 4K displays and Ultra HD TVs at the following resolutions and refresh rates with the built-in HDMI port:
    3840 x 2160 at 30 Hz refresh rate
    4096 x 2160 at 24 Hz refresh rate (mirroring is not supported at this resolution)
    In the article above the New Mac Pro is listed as having support for a 4K Display with the Thunderbolt 2 Port (or MST DisplayPort 1.2a Technology) at 60Hz with no problem.  This leads myself and many others to believe that MST will NEVER be enabled on the newest MacBook Pro Retina with Nvidia GPUs. Yes, 4K IS supported but ONLY through the HDMI 1.4 port, which has the limitation of only 30hz.  This two-faced advertising is extremely upsetting to a LOT of people, including myself.
    Interestingly enough, THIS IS NOT a hardware issue.  If one ventures into Windows 8.1 via Bootcamp and connects a 4K Display via the Thunderbolt 2 (or through DP1.2) Port, the Display registers at 60Hz, thus proving that the Thundberbolt 2 Hub Controller is completely capable of MST DisplayPort functionality.  Clearly this a driver issue with Apple, Nvidia or Intel or any combination.  What Apple has done here is forcing any professional that desires stable and clear 4K technology through their MacBook Pro Retina to do so only using Windows 8.1 on their own machines!  Definitely an oxymoron if you ask me...
    Later on when the Mac Pro was ready for ordering, Apple placed the Sharp PN-K321 as a compatible option for a 4K Display.  On the Store page featuring the (over three thousand dollar) Sharp 4K display, located here http://store.apple.com/us/product/HD971LL/A/sharp-32-pn-k321-4k-ultra-hd-led-mon itor?fnode=53 Apple states the following:
    "Note that 4K DisplayPort operation is only compatible with the new Mac Pro (Late 2013)."
    All of that being said, and I'm terribly sorry for my wordy ranting...
    This brings me to a final two requests to ANYONE reading this post:
    a) Has anyone working with the new 10.9.2 Beta Update seen evidence that DisplayPort 1.2 capabilities will be enabled for the new MacBook Pro Retina (Nvidia 750M) with the promised "Graphics Driver Updates" within the next Mavericks update?
    and
    b) To others that purchased or were/are thinking of purchasing a new MacBook Pro Retina with TB2 Ports: If you are just as upset as me about this crushing blow to consumers that just purchased a $3,000 laptop that were promised something that wasn't delivered - I urge you please, write to Apple and let them know they are making a mistake.  You can do this though the support page or through http://www.apple.com/feedback
    Thank you for your precious time, and if anyone has anything to contribute to this issue, please jump in....

    GOOD NEWS!
    The Mavericks 10.9.3 update adds official support for Thunderbolt 2, 4K!
    I'm not sure if you will be able to daisy chain anything to the 4K display.  I've read that the design of Thunderbolt 2 includes support for DisplayPort 1.2 multi-stream (MST), which allows this type of daisy chaining with 4K, but we don't know if Apple has this supported on it's machines.  Apparently it's been buggy in development because the graphics driver needs to work correctly with the Thunderbolt 2 host controller.  I'm sure they will work it out if they haven't already.
    The above is all via found information on this topic, but you can follow some more discussion here:
    http://forums.macrumors.com/showthread.php?t=1713876
    One more note on Thunderbolt worth sharing: always keep your fastest peripherals closer to the computer in the chain. If you have a TB1 device directly connected to the computer, anything further down the chain will be limited to TB1 speed/capability regardless of it's native speed.  Always connect TB2 devices first, and save anything TB1 for the end of the chain.

  • No script engine supported for 'JScript' error in OBIEE 11G ibots

    Infrastructure: 64 bit OBIEE 11.1.1.5 on 64 bit Red-Hat Enterprise Linux 5.6
    We tried using *.java to export the delivery content of an 'Agent' and place it in a shared folder on Windows.
    We are able to use the .java file directly in putty and it works fine in creating a folder and copying the file from source to target, but when we put the same script as part of the actions in the 'Agent' properties, its fails with the error "[nQSError: 66023] No script engine supported for 'JScript'". The e-mail is triggered and the attachment is delivered fine.
    We tried the same with a *.js file. The error is the same. I found people using *.js scripts and they say it worked for them at Re: How to send the content of an agent (PDF Report) to local machine in 11g
    But I am not sure what are the other settings that should be done. The error seems very basic and fundamental and has something to do with java interpreter or something.
    Any help if you have implemented the same, would be greatly appreciated.
    Thanks!

    That example in the link shows creating an action at the end of 'Agent'. I am not sure if that is what the user meant by 'create an action'. If the user meant to create an 'action', how does and where we call that action at the end of an 'Agent'?
    I did try creating an action by updating the 'UserScript.js' file, but the moment i update the file with a custom function, the server doesnot recognise the UserScript.js file anymore and i cannot even use the default functions in UserScript.js file.

Maybe you are looking for