Does Oracle support OOPS concept?if it is YES , in what ways...Please ..

My question is . The Oracle Database 9i does it support ALL OOPS concepts.? How it can be implemented in pl/sql
or sql plus..

Information on OOPS support can be found in the Oracle9i Application Developer's Guide - Object-Relational Features
http://download-west.oracle.com/docs/cd/B10501_01/appdev.920/a96594/toc.htm

Similar Messages

  • How does java support the concept of destructor?

    How does java support the concept of destructor?

    @KunalSurana: before you flood the forum with basic questions, do us a favour and read.
    [Sun's basic Java tutorial|http://java.sun.com/docs/books/tutorial/]
    [Sun's New To Java Center|http://java.sun.com/learning/new2java/index.html]
    Includes an overview of what Java is, instructions for setting up Java, an intro to programming (that includes links to the above tutorial or to parts of it), quizzes, a list of resources, and info on certification and courses.
    jGuru
    A general Java resource site. Includes FAQs, forums, courses, more.
    JavaRanch
    To quote the tagline on their homepage: "a friendly place for Java greenhorns." FAQs, forums (moderated, I believe), sample code, all kinds of goodies for newbies. From what I've heard, they live up to the "friendly" claim.
    [Yawmarks List|http://forums.devshed.com/java-help-9/resources-for-learning-java-249225.html]
    [The Java Developers Almanac|http://www.amazon.com/exec/obidos/tg/detail/-/0201752808?v=glance]
    [http://javaalmanac.com|http://javaalmanac.com]
    Bruce Eckel's [Thinking in Java(Available online.)|http://mindview.net/Books/DownloadSites]
    Joshua Bloch's [Effective Java|http://www.amazon.co.uk/exec/obidos/Author=Bloch,%20Josh]
    Bert Bates and Kathy Sierra's [Head First Java|http://www.amazon.com/exec/obidos/tg/detail/-/0596004656?v=glance ]
    James Gosling's [The Java Programming Language|http://www.bookpool.com/sm/0321349806]
    Gosling is the creator of Java. It doesn't get much more authoritative than this.
    Joshua Bloch and Neal Gafter [Java Puzzlers.|http://www.javapuzzlers.com/]

  • Does Oracle support this........

    Hi
    I want to select values in a object types in a table over the database link. like
    select name from [email protected]
    where name is of type varray(3) of varchar2(100) in the country table and db.com is database link.
    It is giving me error ORA-22804.
    Does Oracle supports this or not?
    Regds
    ~Sachin

    Your answer is in the message text - Oracle does not support object operations over a database link.
    null

  • What is native Sql data types and does oracle support this?

    what is native Sql data types
    Does oracle support this?

    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14220/datatype.htm#g31099

  • Does oracle support TRANSACTION_READ_UNCOMMITTED level?

    I am using oc4j drivers with jdbc for oracle 9i
    I could not set the transaction isolation level to TRANSACTION_READ_UNCOMMITTED.
    Does oracle support this transaction level ?
    (SQL Server support it)
    Here is the stack trace of the error:
    java.sql.SQLException: READ_COMMITTED et SERIALIZABLE sont les seuls niveaux de transaction valides
    java.sql.SQLException: READ_COMMITTED et SERIALIZABLE sont les seuls niveaux de transaction valides
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:179)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:269)
    at oracle.jdbc.driver.OracleConnection.setTransactionIsolation(OracleConnection.java:1681)
    Thanks for any help...

    Mahmoud,
    The error message, you have posted, seems very clear -- the only valid values are READ_COMMITTED and SERIALIZABLE. This is also documented in the "Oracle9i JDBC Developer’s Guide and Reference", chapter 19 [Coding Tips and Troubleshooting], in the section entitled "Transaction Isolation Levels and Access Modes". Here is an excerpt:
    the Oracle server supports only the TRANSACTION_READ_
    COMMITTED and TRANSACTION_SERIALIZABLE transaction isolation levels
    As someone who moved from Oracle to Informix, I can tell you from my experience, that different RDBMS's have the same functions, but each works differently. So while you probably needed to use the TRANSACTION_READ_UNCOMMITTED isolation level with "SQL Server", you don't need it for Oracle.
    What you need to do is forget how you do things with "SQL Server", and learn how to do things the Oracle way. As you have seen, trying to transfer "SQL Server" code to Oracle doesn't always work.
    The Oracle documentation is available from
    http://tahiti.oracle.com
    Good Luck,
    Avi.

  • Does Oracle support "imported" XML schemas

    Hi,
    Does Oracle support XML schemas that import other XML schemas. If so, are there any known problems ?
    Thanks
    John

    I have the same problem:
    A huge and complex .xsd-schema with several include and import statements can't be registered (all referenced documents exist in the repository):
    DBMS_XMLSCHEMA.REGISTERSCHEMA(
    schemaURL => 'http://www.toxinfo.org/namespaces/2004/05/Rosetta#ProtocolEmil',
    schemaDoc => xdbURIType('/ProtocolEmil.xsd').getClob(),
    local => TRUE,
    genTypes => TRUE,
    genBean => FALSE,
    genTables => TRUE
    causes an Error at the first import:
    ERROR at line 1:
    ORA-31000: Resource 'RosettaSimpleTypeCollection.xsd' is not an XDB schema
    document
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 17
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 26
    ORA-06512: at line 2
    Editing the schema is not an option for me. Any ideas?
    Thanks!
    Tillmann Cordes

  • Does oracle support array in SQL?

    The follow syntax for postgresql works with good performance, does Oracle support? Thanks
    select
         r.company_code,
         r.date,
         r.d5[1] as d5_udm,
         r.d5[2] as d5_ddm,
         r.d5[3] as d5_tr,
    from (
         select
              q.company_code,
              q.date,
              (select array[avg(abs(highest_rate-opening_rate)), avg(abs(opening_rate-lowest_rate)), avg(highest_rate-lowest_rate)] from (select lowest_rate, highest_rate, opening_rate from hkex.quotation q1 where not q1.is_trade_suspend and q1.company_code=q.company_code and q1.date<=q.date order by q1.date desc limit 5) t) as d5
         from hkex.quotation q
         where not q.is_trade_suspend
    ) r;

    Hi,
    I'm not a postgresql exponent but the following query might work, though I haven't tested it.
    select
    r.company_code,
    r.date,
    udm as d5_udm,
    ddm as d5_ddm,
    tr as d5_tr,
    from (
    select
    q.company_code,
    q.date,
    (select avg(abs(highest_rate-opening_rate)) udm,
              avg(abs(opening_rate-lowest_rate)) ddm,
              avg(highest_rate-lowest_rate) tr
    from (select lowest_rate, highest_rate, opening_rate
            from hkex.quotation q1
            where not q1.is_trade_suspend = '0' -- as below
            and q1.company_code=q.company_code
            and q1.date<=q.date
            order by q1.date desc limit 5) t) as d5   -- not sure what limit 5 does (possibly first 5 rows?)
    from hkex.quotation q
    where q.is_trade_suspend = '0'  -- Oracle does not support boolean data type for columns so change col to varchar2(1) with '0' and '1' for false and true
    ) r;Andre
    Edited by: acadet on Mar 4, 2010 3:43 PM

  • I have a problem with installing PS13 as I get an error message "This installer does not support installation on a 64-Bit Windows operating system. Please download the 64-Bit version of Photoshop Elements." how do i do this?

    i have a problem with installing PS13 as I get an error message "This installer does not support installation on a 64-Bit Windows operating system. Please download the 64-Bit version of Photoshop Elements." how do i do this

    Try downloading the trial. It ought to detect that you have a 64-bit system.
    You aren't using Vista, are you? PSE 13 requires at least win 7 and I think a few folks with vista have gotten a similar error message on trying to install it.

  • Unable to install photoshop elements 13 on new computer.  Error message is:  This installer does not support installation on a 64-Bit windows operating system.  Please download the 64-Bit version of photoshop elements.  How do I do this?

    Unable to install photoshop elements 13 on new computer (Windows 8.1 OS).  Error message is:  This installer does not support installation on a 64-Bit windows operating system.  Please download the 64-Bit version of photoshop elements.  How do I do this?

    You can download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
    Photoshop/Premiere Elements 13: http://prodesigntools.com/photoshop-elements-13-direct-download-links-premiere.html

  • I am unable to install photoshop elements13 due to an error. it shows no error code but does say - This installer does not support installation on a 64-Bit Windows operating system. Please download the 64-Bit version of Photoshop Elements.

    i am unable to install photoshop elements13 due to an error. it shows no error code but does say - This installer does not support installation on a 64-Bit Windows operating system. Please download the 64-Bit version of Photoshop Elements.

    download the 64bit installer,
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.7| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • When I connect my iPad with usb to my mac the iPad gives me a "blinking" message asking to trust the computer.  Problem is it does not give me enough time to select yes.  What am I doing wrong?  Help!

    When I connect my iPad with usb to my mac the iPad gives me a "blinking" message asking to trust the computer.  Problem is it does not give me enough time to select yes.  What am I doing wrong?  Help!

    Everything that you sync to the iPad is done through iTunes or from downloading from the cloud if they are iTunes purchases or through iTunes Match, if subscribed.
    It is also not possible to transfer music or certain other files though Bluetooth between other iPhones or Android devices. You can transfer between iOS devices, pictures through devices that are Airdrop capable.

  • Does Oracle support downlaods?

    An Oracle Support Analyst recently told me that downloads from
    TechNet are not officially supported by Oracle, after I had
    created a TAR for a 9i database problem which had been installed
    from such a download. Unless I reinstalled from CDs they were
    unwilling to progress the TAR, unless I could come up with a
    fully reproducable test case which would have been difficult as
    it was an intermittent problem. The question is where on OTN
    does it say that downloads are unsupported and does this include
    the patches on Metalink? Are Oracle effectively saying that we
    shouldn't be downloading software. The problem with ordering
    CD's is that they only seem to be available weeks/months after
    the download is first made available and patches often need to
    be installed in a hurry.

    Let me try that again...
    An Oracle Support Analyst recently told me that downloads from
    TechNet are not officially supported by Oracle, after I had
    created a TAR for a 9i database problem which had been installed
    from such a download. Unless I reinstalled from CDs they were
    unwilling to progress the TAR, unless I could come up with a
    fully reproducable test case which would have been difficult as
    it was an intermittent problem. The question is where on OTN
    does it say that downloads are unsupported and does this include
    the patches on Metalink? Are Oracle effectively saying that we
    shouldn't be downloading software. The problem with ordering
    CD's is that they only seem to be available weeks/months after
    the download is first made available and patches often need to
    be installed in a hurry. I'm not the normal moderator of the OTN forum (I guess I'm the
    abnormal one), but I was curious too and I went to the download
    and grabbed the license agreement. If you want to comment, send
    email to [email protected]
    Check out the bold section.
    ORACLE TECHNOLOGY NETWORK DEVELOPMENT LICENSE AGREEMENT
    "We," "us," and "our" refers to Oracle Corporation. "You"
    and "your" refers to the individual or entity that has ordered
    the programs from Oracle. "Programs" refers to the software
    product which you have ordered and program
    documentation. "License" refers to your right to use the
    programs under the terms of this agreement. This agreement is
    governed by the substantive and procedural laws of California.
    You and Oracle agree to submit to the exclusive jurisdiction of,
    and venue in, the courts of California in any dispute relating
    to this agreement.
    We are willing to license the programs to you only upon the
    condition that you accept all of the terms contained in this
    agreement. Read the terms carefully and select the "Accept"
    button at the bottom of the page to confirm your acceptance. If
    you are not willing to be bound by these terms, select the "Do
    Not Accept" button and the registration process will not
    continue.
    License Rights
    We grant you a nonexclusive, nontransferable limited license to
    use the programs only for purposes of developing and prototyping
    your applications that operate with the programs, and not for
    any other purpose. If you want to use the programs for any
    purpose other than as permitted under this agreement you must
    contact us, or an Oracle reseller, to obtain the appropriate
    license. We may audit your use of the programs. Program
    documentation is either shipped with the programs, or
    documentation may accessed online at http://otn.oracle.com/docs.
    Ownership and Restrictions
    We retain all ownership and intellectual property rights in the
    programs. The programs may be installed on one computer only,
    and used by one person in the operating environment identified
    by us. You may make one copy of the programs for backup purposes.
    You may not:
    use the programs for your own internal data processing or for
    any commercial or production purposes, or use the programs for
    any purpose except the development and prototyping of your
    applications that operate with the programs;
    remove or modify any program markings or any notice of our
    proprietary rights;
    make the programs available in any manner to any third party for
    use in the third party's business operations;
    use the programs to provide third party training;
    assign this agreement or give or transfer the programs or an
    interest in them to another individual or entity;
    cause or permit reverse engineering or decompilation of the
    programs;
    disclose results of any program benchmark tests without our
    prior consent; or,
    use any Oracle name, trademark or logo.
    Export
    You agree that U.S. export control laws and other applicable
    export and import laws govern your use of the programs,
    including technical data. You agree that neither the programs
    nor any direct product thereof will be exported, directly, or
    indirectly, in violation of these laws, or will be used for any
    purpose prohibited by these laws including, without limitation,
    nuclear, chemical, or biological weapons proliferation.
    Disclaimer of Warranty and Exclusive Remedies
    THE PROGRAMS ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
    WE FURTHER DISCLAIM ALL WARRANTIES, EXPRESS AND IMPLIED,
    INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF
    MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
    IN NO EVENT SHALL WE BE LIABLE FOR ANY INDIRECT, INCIDENTAL,
    SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS
    OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY
    THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF
    WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. OUR
    ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED
    ONE THOUSAND DOLLARS (U.S. $1,000).
    Trial Programs Included With Orders
    We may include additional programs with an order which may be
    used for trial purposes only. You will have 30 days from the
    delivery date to evaluate these programs. Any use of these
    programs after the 30 day trial period requires you to obtain
    the applicable license. Programs licensed for trial purposes are
    provided "as is" and we do not provide technical support or any
    warranties for these programs.
    No Technical Support
    Our technical support organization will not provide technical
    support, phone support, or updates to you for the programs
    licensed under this agreement.
    End of Agreement
    You may terminate this agreement by destroying all copies of the
    programs. We have the right to terminate your right to use the
    programs if you fail to comply with any of the terms of this
    agreement, in which case you shall destroy all copies of the
    programs.
    Relationship Between the Parties
    The relationship between you and us is that of
    licensee/licensor. Neither party will represent that it has any
    authority to assume or create any obligation, express or
    implied, on behalf of the other party, nor to represent the
    other party as agent, employee, franchisee, or in any other
    capacity. Nothing in this agreement shall be construed to limit
    either party's right to independently develop or distribute
    software that is functionally similar to the other party's
    products, so long as proprietary information of the other party
    is not included in such software.
    Restricted Rights
    Use, duplication or disclosure by the United States government
    is subject to the restrictions as set forth in the Rights in
    Technical Data and Computer Software Clauses in DFARS 252.227-
    7013(c)(1)(ii) and FAR 52.227-19(c)(2) as applicable. The
    manufacturer is Oracle Corporation, 500 Oracle Parkway, Redwood
    City, California 94065, U.S.A.
    Open Source
    "Open Source" software -- software available without charge for
    use, modification and distribution -- is often licensed under
    terms that require the user to make the user's modifications to
    the Open Source software or any software that the
    user 'combines' with the Open Source software freely available
    in source code form. If you use Open Source software in
    conjunction with the programs, you must ensure that your use
    does not: (i) create, or purport to create, obligations of us
    with respect to the Oracle programs; or (ii) grant, or purport
    to grant, to any third party any rights to or immunities under
    our intellectual property or proprietary rights in the Oracle
    programs. For example, you may not develop a software program
    using an Oracle program and an Open Source program where such
    use results in a program file(s) that contains code from both
    the Oracle program and the Open Source program (including
    without limitation libraries) if the Open Source program is
    licensed under a license that requires any "modifications" be
    made freely available. You also may not combine the Oracle
    program with programs licensed under the GNU General Public
    License ("GPL") in any manner that could cause, or could be
    interpreted or asserted to cause, the Oracle program or any
    modifications thereto to become subject to the terms of the GPL.
    Entire Agreement
    You agree that this agreement is the complete agreement for the
    programs and licenses, and this agreement supersedes all prior
    or contemporaneous agreements or representations. If any term of
    this agreement is found to be invalid or unenforceable, the
    remaining provisions will remain effective.

  • Does Oracle Support Running Oracle 10 Database on VMware ?

    hi experts,
    I have 10g Enterprise on a Windows 64-bit Enterprise platform.
    I know this is a recurring question - whether or not Oracle really supports customers that run Oracle databases in a VMWare environment.
    I found a document on My Oracle Support/metalink that is dated 2007. It says VMWare is not supported.
    But I think the situation may have changed since 2007.
    So can anyone point me to a document that shows whether Oracle does/does not support running Oracle databases on VMware - not Oracle's VMware product but VMWare, inc. ?
    Thanks for any current information. John

    Hans Forbrich wrote:
    1) Oracle has their own virtualization solution;
    2) VMWare is a brand, not a product. Your question is best asked in context of a product;
    3) Oracle will provide you with support as long as you can reproduce the problem in a non-VM environment.
    That last means - it is up to you to prove that the problem is not related to VMWare environment.I have never seen any scenario where Oracle demands you to prove that the problem is not related to VMware.
    If its their suggested solution does not work, and they think i should, they want you to migrate it to a physical machine and test there, however this has never happend, at least not for us. We have around 100 databases in VMware, and the common talk (even from Oracle people that visits us) is that the document is only there IF THERE BY SOME CHANCE IN THE WORLD WOULD COME TO A PROBLEM FOR A COMPANY, WHERE VMWARE IS THE PROBLEM, AND ORACLE CANT HELP, they have to have a get-out clause in terms of support against VMware.

  • Does Oracle Support Searches with Sentence and Paragraph Proximity?

    I have successfully used SENTENCE and PARAGRAPH special groups and the WITHIN operator to search for terms contained within the same sentence and/or paragraph. However, I also need to search for terms that are located within a variable number of sentences or paragraphs of each other. For example, I could search for the term 'dog' and the 'cat' located within 3 sentences of each other. Is this possible in Oracle Text? I have searched the documentation and I can only find the 'near' operator for searching based on word proximity. I cannot find any mention of sentence or paragraph proximity. This is a very important requirement for the system.

    Good question. We are trying to duplicate the functionality of an existing system. It was written into the requirements for the new system. I've asked how important this functionality is to the actual users, but we don't have the answer to that question yet. Knowing that Oracle Text does not support this out of the box, we will certainly need to evaluate the importance of this feature and determine whether it warrants some custom development or switching to another search technology.
    I've thought about using regular expressions to implement this feature, but I'm guessing that the performance wouldn't be that great and it wouldn't integrate well with other Oracle Text searches. Has anyone else used regular expressions combined with Oracle Text to implement more sophisticated searching capabilities?

  • How far does Oracle Support extend?

    Hi,
    I have a problem determining how far I am covered by oracle support in a particular circumstance. I intend to use the DMBS_LDAP package to connect to a CAS authentication server.
    1. Am I covered by Oracle Support in this scenario?
    2. If I am covered, to what extent?/what cover will be provided?
    Thanks,
    JIM

    JIM wrote:
    Justin and Billy, from what you have implied. Oracle will support their services to the nth degree, providing there is proof of bug.
    Obviously the do not support third party tools. However, Oracle will not refuse support on the issue if I am connecting to a non-oracle product, such as in the scenario I described.Almost. You also need to show that the bug in the Oracle s/w is not caused by a "3rd party" s/w or unsupported/non-certified configuration combinations.
    For example, last time I looked Oracle 11.2.x RAC was not certified for VMware. It is certified for OL5.x. So what happens regarding support when you run into a RAC error on OL5.x in a VMware VM? Had this discussion with an Oracle VP last year and he said along the lines of that support will be willing to assist, to the extent of certified o/s support, running on VMware - but should they suspect that virtualisation is the cause (or part of the problem), then one cannot expect support.
    So in your case - if you do a DBMS_LDAP search and that crash and burn, Oracle will support that if it is a bug. However if you tried a funky method outside the LDAP specs against a proprietary half-baked implementation of LDAP, then you are on your own.
    Anyway, that is my understanding of the issue...
    FWIW, been using DBMS_LDAP for some years now against Microsoft Active Directory (authentication and SSO integration, and dealing with escalations and so on that needs organigram data) - no issues. DBMS_LDAP works fine against AD in our case.

Maybe you are looking for

  • Service Desk: How do i Reply back to a support message?

    I  am in the process of configuring the servcie desk. I am using Solution manager 4.0 sp13. I am recieving the messages in the Service desk, and the suport  team members are able to get their respective messges based on  the PFAC responsibility rules

  • Page navigation buttons not working properly

    Hi, I am having a multilingual Java Application (e.g. English, Japanese, French...).  In this application there are reports which display the data using locale parameter (like en_US, ja_JP etc.) to display the data in selected language. The problem c

  • PO for ASSET Internal Order

    Hi, Do we have a PO with Asset as AAC & Internal Order in Acct Assignment Tab of PO item details? I mean system does allow this in a same PO but I would like to know the significance of having such combination. Request to share some inputs from the b

  • VA02 Dataloss flag is set, when new screen fields are not changed, why ?

    Hi, I have added some new fields to the sales order item Additional data B tab. When I go into the sales order in change mode (VA02) and navigate to the Additional data B tab and don't change any of the new field values, the system think that I have

  • WS-C2960X-48LPS-L - "Hardware is not present"

    I have a 2960 stack with 3 switch members.  If I show an interface summary I can see al switches, but none of the ports on the 3rd switch show active.  If I do a show interface on any of those interfaces I see "Hardware is not present."  Another weir