Virtual columns support in oracle 11g

Hi
I created a table with virtual columns using SQL as the APEX GUI didn't support it and I couldn't see the data dictionary of the table in object browser.
Some strange error about my user not having any privileges on the current scheme was displayed also when I tried to view the data. Dropped the table and all is normal again now, was looking forward to using the new 11g feature.
When will virtual columns be supported by APEX?
Regards
Adam

Adam,
>> and I couldn't see the data dictionary of the table in object browser.
That's not my experience. I created a table in SQL Commands using:
CREATE TABLE employees (
  id          NUMBER,
  first_name  VARCHAR2(10),
  last_name   VARCHAR2(10),
  salary      NUMBER(9,2),
  comm1       NUMBER(3),
  comm2       NUMBER(3),
  salary1     AS (ROUND(salary*(1+comm1/100),2)),
  salary2     NUMBER GENERATED ALWAYS AS (ROUND(salary*(1+comm2/100),2)) VIRTUAL,
  CONSTRAINT employees_pk PRIMARY KEY (id)
);I was then able to browse the definition and view the data in Object Browser just fine.
>> Some strange error about my user not having any privileges on the current scheme was displayed also when I tried to view the data.
I couldn't reproduce this problem.
>> When will virtual columns be supported by APEX?
I created an application with an Interactive Report on the above table. On the resultant form, I had to change the item type of the virtual columns to Display Only. After that, DML on the form worked just great.
Joel

Similar Messages

  • Does Headstart 6.5.4 supported in Oracle 11g R2?

    Hello,
    In my application I'm using the following components
    CM SDK 9.0.4.2.26
    Head Start 6.5.4
    Can somebody suggest me is Head Start 6.5.4 supported in Oracle 11g r2 please? If not how to upgrade it to JHeadStart.
    Kind Regards,
    Kam

    Headstart and JHeadstart are different tools. Headstart is a development accelerator for Oracle Designer/Forms, JHeadstart is a development accelerator for Oracle JDeveloper/ADF.
    The prerequisites of Headstart are
    * Oracle 10g database in runtime environment (where CDM RuleFrame is used)
    * Headstart Oracle Designer 10g, patch 6.5.4.0
    * Oracle Designer 10.1.2.0.2 or above.
    * Oracle 10g Developer Suite (10.1.2.0.2)
    I don't know if Headstart 6.5.4 is supported with Oracle 11gR2. The Oracle Designer version is supported with a 10gR2 and a 11gR1 database. So for your development environment you will need a 10gR2 or 11gR1 database.
    Regards,
    Mark

  • Pro*Fortran support on Oracle 11g

    Hi,
    I have received conflicting information whether Oracle 11g supports a Fortran precompiler or not. Does anyone know if Fortran precompiler is supported on Oracle 11g (I could find precompiler manuals easily) and on what platforms Fortran precompiler is/is not supported and what versions of 11g you would find this support ?
    Could you also provide a link to the documentation where I could find this information and supported plantforms?

    Studio Fortran has no special support for databases, nor does Studio provide Pro*Fortran.
    Questions about database programming should be directed to a database programming forum.
    Start here:
    https://forums.oracle.com/forums/category.jspa?categoryID=18

  • SQL PLUSW.EXE Not Supported on oracle 11G

    I installed Oracle 11G and am not able to connect the GUI SQL Plus. When SQLPlus.exe is
    executed, it brings me to a DOS based version of SQL Plus. Is there a way I can get the
    GUI verison installed with 11G?
    i ve installed Oracle Database 11g Release 1 Client (11.1.0.6.0)
    for Microsoft Windows (32-bit)
    but it gives me the same DOS based version
    In which version i ve to download to get GUI sql Plus on oracle 11G?

    user613197 wrote:
    I installed Oracle 11G and am not able to connect the GUI SQL Plus. When SQLPlus.exe is
    executed, it brings me to a DOS based version of SQL Plus. Is there a way I can get the
    GUI verison installed with 11G?
    i ve installed Oracle Database 11g Release 1 Client (11.1.0.6.0)
    for Microsoft Windows (32-bit)
    but it gives me the same DOS based version
    In which version i ve to download to get GUI sql Plus on oracle 11G?Do you mean internet based Sql*PLus?
    For this, you need to start the service (and you should be installed 11g Database, not client) as follows:
    isqlplusctl startThen using port number from $ORACLE_HOME/install/portlist.ini connect to GUI interface of SQL*Plus

  • TimesTen Cache Connect support for Oracle 11g

    The latest 7.0.5 readme mentioned that "Oracle Release 11gR1 is supported with TimesTen Cache Connect to Oracle on Linux x86 32-bit and 64-bit platforms, and on Windows 32-bit."
    What about Solaris 10? It looks like on Solaris 10 only Oracle 10gR2 being supported. What is so specific about Oracle 11?
    Thank you,
    Alex

    TimesTen 7.0.5 can be used to cache data from different versions of Oracle database.
    The reason why the support for Solaris, AIX, and HP-UX were not at the same time as the Linux platform was because Oracle database 11g was not available on those platforms initially. So TimesTen 7.0.5 was certified to support only the ones available first, and support for other platforms was added as 11g became available on those platforms. It was just timing of the certification, code base is the same.
    Susan

  • Oracle 11g and Supported Programming Languages for application development

    Hi,
    Currently we are running our Java application on Oracle 10g Lite. We are planning to upgrade to Oracle 11g Lite very soon. I have below queries to be answered.
    1. What are the programming languages supported for application development to work with Oracle 11g Lite mobile server and client ?
        - i have seen some note saying java and .net are supported. Wanted to know the complete list of supported programming languages on Oracle 10g Lite
    2. Oracle Forms 10g is supported on Oracle 11g Lite platform ?
        - i have some online application running on Oracle 10G Forms. Wanted to extend this to offline model using Oracle 10g Lite
    Thanks,
    Ashok Kumar.G

    Hi Ashok,
    1. What are the programming languages supported for application development to work with Oracle 11g Lite mobile server and client ?
                For the 11g version of the product, we changed the name to Oracle Database Mobile Server.    For clarity purposes, there is no product called Oracle 11g Lite mobile server.
                For a detailed list of what is/is not supported on the client, please consult the documentation.   See section 2.1 of the Mobile Client guide.  For programming languages you
                can use what you want, and we support the following technologies, JDBC, ODBC, ADO.NET.  What you code your application in is up to you.
    2. Oracle Forms 10g is supported on Oracle 11g Lite platform ?
                   On the database mobile server side of things we do not do testing with Oracle Forms 10g.    I do not know enough about applications developed with the Forms' product.   Database Mobile Server is a product that keeps tracks of changes that occur in a database, and then propagates those changes to an Oracle backend.   We offer 2 way synchronization between an Oracle backend database and a client.  If you are running the Forms application on the Oracle backend and want to propagate changes done out to the client, then this should work.    I say ** should **   because we have not tested it but I cannot think of a reason why it would not work.   It would be up to you to develop the client side application that would look at the data in the client database and display it to the user.    In the 11.x version of the product, we support 2 client databases, Berkeley DB and SQLite.
    thanks
    mike

  • How to install Oracle 11g R2 Express Edition in Arch 64?

    Does anybody know how to do that?
    The AUR website has a package for the beta version of Oracle 11g R2 Express Edition (https://aur.archlinux.org/packages.php?ID=48366), but somebody commented that it had some problem.
    After a few months, I think it's easier to install centos 6.2 in a virtual box and install Oracle 11g there.
    Last edited by dxxvi (2012-06-06 20:57:36)

    By default Chinese language will be selected, you can also add english language from the left panel where you find list of languages. Then drag drop English to right panel and click next to continue with your installation.

  • Unable to enlist in a distributed transaction (Windows7, Oracle 11G R1)

    Hi,
    I have a .Net application running on Windows 7 x64 using VisualStudio2008 and Oracle 11G R1 32bit client
    In it I call a webservice calling another webservice, this requires to use oramts that interfaces with Microsoft DTC. However I'm getting the following error when calling the service method:
    "Unable to enlist in a distributed transaction"
    I have checked the following:
    - Ora MTS is installed
    - DTC is running, the security settings allow AX transactions (in fact I just allowed everything)
    - Network services have the permission to access oracle dlls
    - The registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSDTC\MTxOCI contains the following: "OracleXaLib"="xa80.dll" "OracleSqlLib"="SQLLib80.dll" "OracleOciLib"="oci.dll" (not sure if this is right)
    What is it I'm doing wrong ? Does this version of Oracle work correctly on W7 ?
    By the way it works fine on Windows XP !
    I've spend quite some time trying to find a resolution..
    Thanks!

    I think I answered my own question
    It seems that MSDTC is not supported by Oracle 11G R1 on Windows x64 !
    All Oracle Database components are supported on Windows x64 with the following exceptions:
    •Oracle Services for Microsoft Transaction Server are not supported on Windows Vista. As a result, all Oracle Windows data access drivers on Windows Vista that use Oracle Services for Microsoft Transaction Server to enlist in Microsoft Distributed Transaction Coordinator (MSDTC) coordinated transactions cannot participate in those coordinated transactions. These data access drivers include Oracle Data Provider for .NET, Oracle Provider for OLE DB, Oracle Objects for OLE, and ODBC. Check OracleMetaLink for up to date information on Oracle Services for Microsoft Transaction Server certification with Windows Vista.
    http://download.oracle.com/docs/cd/B28359_01/install.111/b32006/reqs.htm#CHDCEFIJ
    Edited by: 845528 on 18 mars 2011 05:05

  • Compound lines in Oracle 11g

    Could you please tell me whether "3D compound lines" supported in Oracle 11g R2 ?
    Ex : SDO_GEOMETRY(3002,NULL,NULL,SDO_ELEM_INFO_ARRAY(1,4,1,1,2,1)
    This object is valid in oracle 10.2.0.4 but getting invalid in oracle 11.2.0.1 . ( check with SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT ).
    This cause index creation fail as invalid data in the SDO_ELEM_INFO_ARRAY.

    user9015969,
    . . . .Yes, 3D compound lines are supported in Oracle 11gR2.
    . . . .That geometry is invalid. According to the documentation compound linestrings need to have >1 subelements, whereas that geometry only has =1 subelement. One way to fix it is to remove the first tuple ("1,4,1") from the sdo_elem_info array.
    Regards,
    Noel

  • Oracle 11g on Linux for Power?

    Hi All,
    Does Oracle today has support for Oracle 11g on Linux for Power?
    I couldn't find it from the website, only has Oracle 10gR2..
    Please advice..
    Thank you..
    Regards,
    Alson Ang
    First Solution Sdn Bhd

    Just found Oracle Support document 1310584.1, last updated August 5, 2011:
    Says:
    Oracle will not be releasing Oracle Database 11g on IBM Linux on Power systems. Customers can continue to run the terminal patch set of Oracle Database 10g Release 2 (10.2.0.5)....
    Extended Support is offered through July 21, 2013
    Limited Extended Support offered until July 31, 2015
    Hope this helps.
    Matt

  • Upgrade of Oracle forms and reports on 6i to Oracle 11g

    Dear All,
    I wish to know the level of support for running Oracle 6i forms and reports over Oracle Database 10.2.0.5. Is this currently supported by Oracle ? If yes, is there any supporting document?
    Secondly, how can I make my forms and reports running on Oracle 6i to Oracle 11g ? Is Oracle 6i supported on Oracle 11g also ? Can I run my forms/reports by just upgrading the database to 11.2g and execute them?
    Looking forward to your earliest response on the subject
    Thank you
    Best Regards

    Hi,
    The support for 6i Version is discontinued. And will be no longer supported. Straight Answer.
    And to answer your Second question,
    I understand you have Form6i in client/server installation and looking to upgrade the database to 11g version.
    If this is right, most of the pl/sql code will work fine against the 11g database and those bits of pl/sql which uses the Forms6i might not compile but it will be easy to convert or migrate using Forms Migration Assistant.
    hope this will little help.

  • Virtual column in oracle 11g ???

    HI Gurus,
    I m really intrested in this new feature in oracle 11g called "Virtual column" . ....can anyone give me a very good example of code for virtual column???...i didnt find the good example for virtual column in online...
    can we update or insert data into the virtual column ??
    Thank you !!

    Hi,
    For the last one, no.
    See http://www.oracle.com/technology/pub/articles/oracle-database-11g-top-features/11g-schemamanagement.html
    regards
    Peter

  • Oracle 11g RAC on Windows 2008 R2 VMware EXS 3.5 virtual machines

    Hi,
    We are planning to Install Oracle 11g R2 RAC on two VMware EXS 3.5 Windows 2008 R2 servers.
    Having trouble while assigning the storage to the servers, the Raw Device Mapping feature in the VMware is greyed out and we cannot assign the disks to the Virtual servers, the disks are allocated to the Vmware Host machine from the SAN (HP EVA).
    Please guide me the best approach for the RAC configuration on VMware EXS 3.5 Win 2008 R2 Guest servers.
    any help will be highly appreceiated.
    Thanks.

    Hi,
    Is this implementation to production environment?
    Be aware:
    Is Oracle RAC on VMware supported? No, we do not support Oracle Software including Oracle RAC on VMWare.
    Aside from the support restrictions for the database on VMWare outlined in Metalink Note 249212.1, there are technical restrictions that prevent the certification of Oracle RAC in a VMWare environment.
    *RAC: Frequently Asked Questions [ID 220970.1]*
    Having trouble while assigning the storage to the servers, the Raw Device Mapping feature in the VMware is greyed out and we cannot assign the disks to the Virtual servers, the disks are allocated to the Vmware Host machine from the SAN (HP EVA).Check if below can help you.
    http://vmzare.wordpress.com/2007/02/19/vmware-raw-device-mappingrdm/
    Regards,
    Levi Pereira

  • Oracle 11g in Virtual Machine

    Hi Gurus,
    I would like to gather input from you, what is the pro and con, advantages and disadvantages for putting Oracle 11g in Virtual Machine (VMWare, Oracle VM, Virtual Box, etc.)
    and will there be any licensing issue with this.
    Currently we have CPU Based license for our Production and Named User license for the Dev.
    thanks in advance for your time.
    Lie

    If you put Oracle db in VMWare then you have a non-certified configuration, and you could be alone (I mean without Oracle support) if you have a problem than Oracle support cannot reproduce in a certified configuration. I would avoid a non-certified configuration for a production environment.
    So, two choices :
    * go for Oracle VM
    * go without VM at all
    Nicolas.

  • Virtual column in 11g

    Hi all,
            I m migrating from 10g to 11g.I have doubt on virtual column.whether function based index and virtual column are same?
    if no means what difference between then.What are difference in their performance??

    No, they aren't the same.
    if no means what difference between then
    Function based index is a "INDEX" whereas virtual column is a "COLUMN". Both are two different Database objects.
    What are difference in their performance??
    You can't compare peformance of a Column with that of a Index.
    Virtual columns appear to be normal table columns, but their values are derived rather than being stored on disc. E.g.,
    CREATE TABLE employees (
      id          NUMBER,
      first_name  VARCHAR2(10),
      last_name   VARCHAR2(10),
      salary      NUMBER(9,2),
      comm1       NUMBER(3),
      comm2       NUMBER(3),
      salary1     AS (ROUND(salary*(1+comm1/100),2)),
      salary2     NUMBER GENERATED ALWAYS AS (ROUND(salary*(1+comm2/100),2)) VIRTUAL, -- This is
    your virtual column
      CONSTRAINT employees_pk PRIMARY KEY (id)
    For more info, you can refer to Oracle Documentation and below is additional link from asktom
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:676611400346196844
    Ishan

Maybe you are looking for

  • Conditional statement in html

    This is actually not a JSP question but an HTML question. I could'nt find any good html forum sites out there, and since I received excellent replies in my previous post, I am hoping that those of you who know JSP also know html. Heres my question, i

  • J2EE engine not getting started

    Hi All, My J2ee engine isnt getting started. When i check the logs, i see the following error, Error occurred while preloading classes of security providers from jre/lib/ext folder: java.util.zip.ZipException: The filename, directory name, or volume

  • APEX page displays correctly in Firefox but not in IE7 nor IE8

    I have an APEX 4.0 page which displays two columns of data. In Firefox, where the border for column one should end, it does. Then the column two data is displayed right next to column one (correctly). In IE, there is a gap of blank space between the

  • Making system calls in Flex

    - Can I make system calls to access the local file system? If so, is there a sample? - Can I make system calls to run local console scripts/binaries and get the output back? If so, is there a sample? Thanks,

  • HT4061 my iphone 4 is locked

    ...and i am trying to get it unlocked.  I cannot get help from applecare online because I don't have the packaging handy and the phone is locked (re: serial number).  What do I do? I forget what operating sustem is on it.  My son was using it in July