Can Developer 6.0 work with Oracle Personal

I need to config Developer 6.0 on a single computer.
So , I installed Oracle Personal 8.03 which works OK.
But Developer's intaller refused to share Oracle Home
directory prompting for a new one.
I haven't found any hints in OP documentation at is it possible
in general to get Developer working under OraPersonal ?
Please help.
null

Oracle Developer Team wrote:
: Amit (guest) wrote:
: : dear sir,
: : i have oracle 8.0.3.0. please can u give me guide line
how
: : can i installed developer 6.0 on in it.
: : best regards,
: : amit.
: : Oracle Developer Team wrote:
: : : Amit (guest) wrote:
: : : : dear developers,
: : : : i have personal oracle 7.2 and developer 6.0
beta i
: : : : installed both on same home. after installation i get
: oracle
: : : : net8 easy configuration under oracle for window95 but
when
: i
: : : : click on it no action is done.
: : : : how can i connect to my po7.2.
: : : : best regards,
: : : : amit.
: : : ==> Developer Release 6.0 Beta is not certified against
: PO7.2,
: : : i.e. you cannot install in the same ORACLE_HOME the two
: : products.
: : : (The production Developer 6.0 won't be easier).
: : : You should use PO7.3.4 or 8.0.5. You can get a trial copy
of
: : : PO8 at http://oraclestore.oracle.com for $5.
: Developer Release 6.0 is only certified in the same
: ORACLE_HOME as 8.0.5 This can be found in the release notes.
Is PO 8.0.5 released yet?
Why does the beta CD come with 8.0.4 ?
(Note: Forms 6 works fine against odbc with other datasource
but please do not force us to use non-oracle datasource !)
null

Similar Messages

  • Few errors while working with Oracle 9i developer suite.

    I am facing a few errors working with Oracle 9i developer suite.
    1. while running forms we have to press "ctrl +F11" to execute a query.
    is there any other way of executing a query where the user can do it at a click of button or so? and similarly some way of canceling a query?
    2. how can we run parameterized reports thru a menu in forms?
    3. i had run a query which fetched around 15 records which were populated in 10 text boxes. i cud scroll down to see the records, with the keys but was not able to scroll back up. how can this be avoided or some way thru which we can scroll?
    4. can sessions be created in Oracle forms?
    5. the security feature thru menu roles is not proving efficient. can some1 suggest some way of achieving this user access control?
    hope some 1 can answer my queries soon

    1) execute query in windows is F8, yours is unix. Change the resource-file. You find them in <forms-home>. fmrweb.res is the standard. Save a copy. Copy then the fmrpcweb.res into fmrweb.res. That's all.
    2) start in the menu with an execute_trigger ('UN_MY_REPORT_CALL') a forms-level-trigger in your form. Then you can interact with your report-objects.
    3) page down + up are the keys to scroll. maybe the solution is 1)
    4) yeah, implicit with open_form (... new_session...) but what do you need ?
    5) write your own mechanism. say first, which features do you need
    Gerd

  • Can Oracle designer 1.3.2 work with Oracle 8.0.5

    Dear Sir/Miss,
    I would like to know if anyone can tell me if Oracle Designer 1.3.2 can work with Oracle 8.0.5 database or not?
    Thank you
    Best Regards

    First i installed Oracle 10g on my windows 7 home premium 64 bit .
    Then i installed OBIEE 10.1.3.4 on my machine
    But then there were some problems cropping up and i wasn't able to use OBIEE 10.1.3.4 with windows 7home premium 64 bit machine.
    I then removed both oracle 10g and OBIEE 10.1.3.4 from my machine.
    Then i installed oracle 11g 64bit and then OBIEE 10.1.3.4 . But again it dint work
    Can anyone help?

  • Can SQL Developer Data Modeler work with OBIEE?

    Can SQL Developer Data Modeler work with OBIEE? Can we export the data model from the Data Modeler and import it into OBIEE? Or export the OBIEE metadata to the Data Modeler for Data Model defining?

    no
    Philip

  • Is there any enterprise class PHP framework that works with Oracle ?

    Hi everyone,
    I am investigating the possibility of using some kind of PHP framework that will help develop enterprise class web applications. -- something similar to Oracle's ADF for Java --
    I have spend the last two weeks working with symfony which appears to be very attractive but does now work with Oracle. (Well at least I haven't been able to make it work).
    So my question is what are you people using? I mean you can't go around witting PHP scripts that display HTML tables with embedded echo's in them, each time you want to display the results of a query...
    Thanks in advance
    Thanassis

    There is Cake, but I have no experience. I wrote an article about Symfony, after I was tasked with maintaining a PHP application written with Symfony. A colleague has left the company and the application was given to me. Since then, I have left the company, so I am no longer in such close contact to PHP frameworks. The information about Cake can be found at http://cakephp.org. I have no experience whatsoever with it.

  • Oracle 11g XE not working with oracle BI publisher 10g after enabling ACL

    Hello,
    I previously work with oracle 10gXE and Oracle BI publisher 10g and it work fine. now i install oracle 11g XE and try to configure it with oracle Bi Publlisher, it show this error
    "ORA-29273: HTTP request failed ORA-06512: at "SYS.UTL_HTTP", line 1324 ORA-12570: TNS:packet reader failure" after runing the ACL package to neable network service.
    on the database.
    Please can any body tell be why this is not working. Tanx.

    You'll need to add the apex engine owner to the ACL (Access Control List). Depending on your version of apex the user name varies. i.e. 4.0 is APEX_040000
    See Joel's blog for info about the ACL and APEX.
    [http://joelkallman.blogspot.com/2010/10/application-express-network-acls-and.html]

  • Does INNER JOIN work with Oracle 8i ? (ORA-00933)

    hi,
    I try to execute the sql:
    SELECT
    A0.FULL_NAME,A0.MANAGER_ID,A0.DEPT_NO,A0.TOP_DEPT
    FROM
    HR_ORG A0
    INNER JOIN
    HR_EMP A1
    ON
    A0.MANAGER_ID=A1.EMP_NO
    WHERE
    A1.NAME = 'michael'
    but I caught an exception:
    java.sql.SQLException: ORA-00933: SQL...(message in
    chinese)
    Does INNER JOIN work with Oracle 8i ?
    thanks.

    INNER JOIN syntax is introduced in 9i, it does not exists in 8i. You can rewrite your statement:
    SELECT
    A0.FULL_NAME,A0.MANAGER_ID,A0.DEPT_NO,A0.TOP_DEPT
    FROM
    HR_ORG A0
    , HR_EMP A1
    WHERE
    A0.MANAGER_ID=A1.EMP_NO
    AND
    A1.NAME = 'michael'

  • How to get exact match when working with Oracle Text?

    Hi,
    I'm running Oracle9i Database R2.
    I would like to know how do I get exact match when working with Oracle Text.
    DROP TABLE T_TEST_1;
    CREATE TABLE T_TEST_1 (text VARCHAR2(30));
    INSERT INTO T_TEST_1 VALUES('Management');
    INSERT INTO T_TEST_1 VALUES('Busines Management Practice');
    INSERT INTO T_TEST_1 VALUES('Human Resource Management');
    COMMIT;
    DROP INDEX T_TEST_1;
    CREATE INDEX T_TEST_1_IDX ON T_TEST_1(text) INDEXTYPE IS CTXSYS.CONTEXT;
    SELECT * FROM T_TEST_1 WHERE CONTAINS(text, 'Management')>0;
    The above query will return 3 rows. How do I make Oracle Text to return me only the first row - which is exact match because sometimes my users need to look for exact match term.
    Please advise.
    Regards,
    Jap.

    But I would like to utilize the Oracle Text index. Don't know your db version, but if you slightly redefine your index you can achieve this (at least on my 11g instance) :
    SQL> create table t_test_1 (text varchar2(30))
      2  /
    Table created.
    SQL> insert into t_test_1 values ('Management')
      2  /
    1 row created.
    SQL> insert into t_test_1 values ('Busines Management Practice')
      2  /
    1 row created.
    SQL> insert into t_test_1 values ('Human Resource Management')
      2  /
    1 row created.
    SQL>
    SQL> create index t_test_1_idx on t_test_1(text) indextype is ctxsys.context filter by text
      2  /
    Index created.
    SQL> set autotrace on explain
    SQL>
    SQL> select text, score (1)
      2    from t_test_1
      3   where contains (text, 'Management and sdata(text="Management")', 1) > 0
      4  /
    TEXT                             SCORE(1)
    Management                              3
    Execution Plan
    Plan hash value: 4163886076
    | Id  | Operation                   | Name         | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT            |              |     1 |    29 |     4   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| T_TEST_1     |     1 |    29 |     4   (0)| 00:00:01 |
    |*  2 |   DOMAIN INDEX              | T_TEST_1_IDX |       |       |     4   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - access("CTXSYS"."CONTAINS"("TEXT",'Management and
                  sdata(text="Management")',1)>0)
    Note
       - dynamic sampling used for this statementJust read that you indeed mentioned your db version in your first post.
    Not sure though if above method is already available in 9i ...
    Message was edited by:
    michaels

  • How can i do the RAC with Oracle 9i ?

    How can i do the RAC with Oracle 9i ?
    The Oracle 9i has a RAC(Real Application Cluster)module , please who can tell me how can i let it working .
    Which hardware the RAC need's
    Thank All ,
    [email protected]

    That is right you need atleast 2 boxes. The two servers will use the same hard disks.
    The concept is an extension of OPS(Oracle Parallel Server).
    Basically, you install Oracle Server Software on both the boxes, One database will be shared by both the servers. You can access your database through the Server1 or Server2. If Server1 fails then the Server2 will take over all the connections. You can add or remove any servers to and from the cluster any time you want with out impacting your production.
    They share load, reliable, scalable....

  • How to work with oracle and active directory...

    Hi,
    Can somebody let me know how do i configure active directory with oracle 10g?
    I am trying to do this using configuration wizard but fields are grayed out for me to proceed. It also shows me to prepare active directory to work with oracle first.
    How do i do that?
    Can someone let me know the steps to do so?
    Regards
    Vikas

    Depends on what you want to achieve?
    Usually when you want Enterprise Users (users that are managed by a directory instead of a schema) you will perform other steps than in a scenario where you need some attributes from the AD.
    cu
    Andreas

  • Working with Oracle Multimedia Types ORDSYS.ORDDOC

    Hi All,
    Using the "Oracle Fusion Developer Guide" page 404 Working with Oracle Multimedia Types by Frank Nimphius and Lynn Munsinger. I tried to replicate the solution in a sample app. My upload works as said when I place the VO as a ADF Form.
    Now I wanted to replicate the same while placing the VO as a ADF Table, where user has an option of creating 1 or more records.
    I have made the following changes to the pageDef. and jspx
    <tree IterBinding="MydocsView1Iterator" id="MydocsView1" CustomInputHandler="OrdDomainValueHandler">
          <nodeDefinition DefName="model.MydocsView" Name="MydocsView10" >
            <AttrNames>
              <Item Value="Id"/>
              <Item Value="Doc" />
              <Item Value="Image"/>
            </AttrNames>
          </nodeDefinition>
        </tree>
    <af:column sortProperty="Doc" sortable="false"
                           headerText="#{bindings.MydocsView1.hints.Doc.label}"
                           id="c1">
                  <af:inputFile value="#{row.bindings.Doc.inputValue}"
                                label="#{bindings.MydocsView1.hints.Doc.label}"
                                required="#{bindings.MydocsView1.hints.Doc.mandatory}"
                                columns="#{bindings.MydocsView1.hints.Doc.displayWidth}"
                                shortDesc="#{bindings.MydocsView1.hints.Doc.tooltip}"
                                id="it3">
                    <f:validator binding="#{row.bindings.Doc.validator}"/>
                    <binding:convertOrdDomain bindingRef="#{row.bindings.Doc}"/>
                  </af:inputFile>
                </af:column>When I changed the <binding:convertOrdDomain bindingRef ="#{bindings.Doc}" to <binding:convertOrdDomain bindingRef="#{row.bindings.Doc}"/> it started throwing null pointer exception.
    java.lang.NullPointerException
         at oracle.jbo.im.OrdUtils.getOrdObject(OrdUtils.java:33)
         at oracle.adfinternal.view.faces.convert.OrdDomainConverter.getAsObject(OrdDomainConverter.java:40)
         at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputFileRenderer.getConvertedValue(SimpleInputFileRenderer.java:111)
         at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.getConvertedValue(LabeledInputRenderer.java:99)Anything extra to be done when we trying to workout uploadfiles in a ADFTable.
    Thanks,
    Morgan.
    Edited by: Morgan Freeman on Sep 7, 2011 6:03 AM

    Hi Morgan,
    I was wondering if you were able to resolve this issue. I had a table where I had users manage attached files and it was giving me this same error.
    java.lang.NullPointerException
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.getAttributeDef(JUCtrlValueBinding.java:553)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.getAttributeDef(JUCtrlValueBinding.java:2637)
         at oracle.jbo.im.OrdUtils.getOrdObject(OrdUtils.java:33)
         at oracle.adfinternal.view.faces.convert.OrdDomainConverter.getAsObject(OrdDomainConverter.java:40)
         at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputFileRenderer.getConvertedValue(SimpleInputFileRenderer.java:111)
    I thought this was because of my table, so made my table read only and had the users navigate to a pop up with a form where one of the fields has the CustomInputHandler="OrdDomainValueHandler". This appears to work fine when the first file is attached. However, if I go to another record and try to attach a file, I get the error you menioned again.
    Were you able to resolve this? If yes, do you mind sharing your solution/work around?

  • Can Photoshop Element 9 work with Lightroom 5?

    Can Photoshop Element 9 work with Photoshop Lightroom 5?

    Hi David_B,
    Thanks for your reply! I've installed PS many times (since version 3, I think), and nothing like this has ever happened. I use and teach PS and LR for a living. The tech person I spoke with told me it is not unusual to have this happen when upgrading to CC 2014.
    What happened is that PS CC2014 would not open the image in PS if I used the Photo>Edit In>PS 2014 command unless I used Photo>Edit In>Open as Smart Object. Once opened as a smart object, PS would not save the file. I think it said Error 2.
    The tech took control of my computer, removed PS and LR and all the associated files a few times. He told me I'd have to have a high level person help me, but they didn't call me, so I phoned in. After waiting an hour to get to the correct person (not a high level tech) he said he'd have to uninstall everything again and start over and that it would take over an hour. I don't have the time right now to fix it as I'm headed out of town until the end of the month to teach LR.
    In the meantime, LR works, but I'm using a trial version that expires in 30 days. It exports to PS ok, but I had to reload all my plug-ins, and apparently LR can't find Photomatix. LR is not installed in my usual applications folder - the tech put it on my system backup drive.
    My case number is: 185696477
    Thanks so much for your willingness to help!
    Terry

  • What i need to install on new computer - has program that work with Oracl

    hi
    what i need to install on new computer that has program that
    work with Oracle 11.2 ?
    the database is on the server and the new computer connect to the server.
    can i get link for download this ?
    thanks in advance

    thanks for the help !
    but so many downloads..... what to download ?
    i don't find any client 11g to download
    i need to download the full Oracle 11g for this ?
    can you send me exactly what to download ?
    thanks in advance

  • Tools required to install to work with Oracle Data warehouse

    Could anyone please guide me...as I am quite new to Oracle...
    till now I was working on Data warehousing using Microsoft tools i.e. (SSIS, SSRS, SSAS, SQL Server)
    So Please tell me which are the tools required to install to work with Oracle Data warehouse
    I came to know about OWB and OBIEE, but not sure what exactly these are ?

    In order to create and develop a webcenter portal application, you only need to install JDeveloper and download the WeBCenter extensions. That's true.
    But this install does not include the WebCenter services like dicussions, document services, analytics,... If you want to use these and integrate them in your portal, then you would need to install the suite as described on my blog.

  • Unable to find ODI_SAmple_DATA.zip file to work with oracle profiling.

    I am unable to find ODI_SAmple_DATA.zip file to work with oracle profiling.Any help regarding profiling???Do i need to
    copy it from sw installation folder.?How profiling is different or related to odi data quality???Do we take source data twice -
    1) For ODI target load
    2)For profiling into entities.

    Try:
    http://www.oracle.com/technology/products/oracle-data-quality/pdf/oracledq_sample_data.zip
    and
    http://download.oracle.com/otn/nt/ias/101340/oracledq_sample_directory.zip
    Hope this helps.
    G

Maybe you are looking for

  • Batch Monitor and Compressor do nothing when I submit...

    Hey, guys, I've re-install the whole OS and Final Cut Studio 2, I use Compressor to encode my video clip, after setup the format and the destination, I click the "submit" Button, the batch job send to Batch Monitor, but Compressor and Batch Monitor d

  • Regarding ISU-BI reports

    Hi All, I have to build a Meter & Meter Reading Data Report. But i am unable to find a relevant datasource for the same. Can anyone please let me know which Datasource has to be used to build this report. Thanks in advance, AT

  • Rejection of PO item with reason 06 - IDoc failure

    Hi, There is an IDoc failure with message: Rejection of PO item with reason 06. The user(supplier) wants to reject first line item of the Subcontracting PO and add a new line item instead with the right data. Please suggest. Regards, Akash Prekar

  • TS3988 waiting for file to be available in iCloud

    When saving a pages document to the cloud I see "waiting" underneath the file name where the date saved should go. Never had to wait before, did i do something wrong?

  • Music transfer from ipad to iphone

    Can somebody help, I am unable to transfer my music from my ipad3 to my iPhone 5