Unalbe to connect Oracle D2K with oracle 10.2.0 database

hello,
i've installed Oracle10.2.0 database and oracle 10.2.0 forms and reports and connected to the databse successfully. But now i also installed Oracle D2K and provide the desired service name in its tnsnames.ora file but still unable to connect it with database.
Kindly suggest me what I am missing.
Thank you,
regards.

I have been using Forms 6i (with PS 18) against 9.2.0.8 and 10g (R1 and R2) without any problem. Your issue with the connection might be because of the tnsnames.ora incompatibility. When the Forms 6i is installed, it installs 8.0.6.3 under the hood . So, instead of using the tnsnames.ora and sqlnet.ora that comes with the Forms 6i, set the TNS_ADMIN variable, and binary ftp the tnsnames.ora and sqlnet.ora from your database server (10gR2) instead. Then try again.
Hope this proves useful.

Similar Messages

  • Is it possible to connect Sqlfire server with oracle using DBSynchronizer using default license

    is it possible to connect Sqlfire server with oracle using DBSynchronizer using default license
    Sql fire is my machine
    Oracle is another machine
    When i connect sqlfire with oracle using DBsynchronizer It shows the error message as Wan is not supported for default license
    When i connect Sqlfie(my system) with oracle( another system) using JDBC Rowloader .nothing is happening after some time it shows the error like"time out for pool connection to archive database.When i increase the time out also nothing is happening.
    what is the reason for above two errors(I stated in the pragraph.)
    is it beacuse of wan netwrok not supported by default evaluation license?
    could you please explain?

    I don't think this has anything to do with a VMware product.

  • How to connect google maps with oracle

    Hello people ,
    i read an artical there is a way to connect google maps with oracle .
    can anyone give us lesson or more information to do that ?
    regards .

    I guess, using Google for the same should be the best way to find the solution for it,
    http://www.google.com/search?sourceid=chrome&ie=UTF-8&q=How+to+connect+google+maps+with+oracle
    HTH
    Aman....

  • How to connect pocket pc with oracle 9.2.0.6 databse

    hi,
    i have oracle 9 databse and erp which works with it.
    i need to create application for pocket pc which must work with oracle 9 database.
    how can i connect pda device with oracle databse?
    how to use oracle databse lite to do this?
    best regards

    I know there was a problem in 6i where you would get a crash if your query returned more than {Max Length} characters of the field representing the CLOB column.

  • Connect as: normal with Oracle 12c and Toad 12 FAILS.

    Connect as: normal with Oracle 12c and Toad 12 FAILS.
    I've been looked at forums, blogs and wikies but I couldn't found why my new user, that I created before, can't connect as NORMAL but as SYSDBA it can.
    I don't know why this occurs.
    My intention is create a user/schema in a local DB to have my own db.
    I can create a new user but when I go to connect to this new schema I only connect as SYSDBA, this is a big trouble because I can "see" object's DBA and I don't want this, I want create my own new schema db and not share name's object or name's tables with DBA.
    For example, object JOB exists as SYSDBA and I can't create a new table with this name.
    Please, help me.
    Thanks very much for read me.

    Hello rp0428!!
    I'll show you all step that you wrote.
    In sql plus:
    sho con_name
    CON_NAME
    CDB$ROOT
    SELECT name, created, open_mode FROM v$database;
    NAME CREATED                OPEN_MODE
    ORCL 23/07/2013 15:59:44 READ WRITE
    SELECT username, account_status, lock_date, expiry_date FROM dba_users WHERE USERNAME like '%IMEI%' ORDER BY 1;
    username       account_status  lock_date     expiry_date
    IMEILOCAL   OPEN                                    22/01/2014 12:20:25
    SELECT USERNAME,CON_ID,USER_ID FROM CDB_USERS WHERE USERNAME like '%IMEI%';
    USERNAME     CON_ID   USER_ID
    IMEILOCAL      3               117
    select GRANTEE,con_id from cdb_ROLE_PRIVS where GRANTED_ROLE='CONNECT' AND GRANTEE LIKE '%IMEI%';
    GRANTEE                  con_id
    IMEILOCAL                3
    SELECT NAME, CON_ID, DBID, CON_UID, GUID FROM V$CONTAINERS ORDER BY CON_ID;
    NAME       CON_ID    DBID                CON_UID         GUID
    ORCLC    3               2835062256     2835062256     14236144864B451C8E04D5C6453034FA
    To create my user I did:
    select con_id,dbid,NAME,OPEN_MODE from v$pdbs;
    2    4064112103    PDB$SEED    READ ONLY
    3    2835062256    ORCLC      MOUNTED
    alter PLUGGABLE database ORCLC open;
    select con_id,dbid,NAME,OPEN_MODE from v$pdbs;
    --2    4064112103    PDB$SEED    READ ONLY
    --3    2835062256    ORCLC      READ WRITE
    alter session set container=ORCLC;
    CREATE TABLESPACE DATA3 DATAFILE 'C:\app\X05699SA\oradata\orcl\DATA3.dbf' SIZE 50M;
    CREATE USER IMEILOCAL IDENTIFIED BY IMEILOCAL DEFAULT TABLESPACE DATA3 TEMPORARY TABLESPACE TEMP PROFILE DEFAULT ACCOUNT UNLOCK;
    select username, password, created, password_versions, default_tablespace from dba_users where username like '%IMEI%';
    username      password     created                         password_versions    default_tablespace
    IMEILOCAL                       24/07/2013 16:41:35   11G                             DATA3
    GRANT CREATE SESSION TO IMEILOCAL;
    GRANT CREATE TABLE TO IMEILOCAL;
    GRANT CREATE VIEW TO IMEILOCAL;
    GRANT CREATE procedure TO IMEILOCAL;
    GRANT CREATE trigger TO IMEILOCAL;
    GRANT CONNECT TO IMEILOCAL;
    GRANT CREATE SEQUENCE to IMEILOCAL;
    GRANT create any context TO IMEILOCAL;
    GRANT create public synonym TO IMEILOCAL;
    GRANT execute on dbms_rls TO IMEILOCAL;
    GRANT administer database trigger TO IMEILOCAL;
    SELECT user, osuser, terminal, program FROM gv$session WHERE sid = (SELECT sid FROM v$mystat WHERE rownum = 1);
    user     osuser                                 terminal                      program
    SYS    SECTORIALES\X05699SA MX3500906DC1549 Toad.exe
    SELECT u.username, u.default_tablespace, u.temporary_tablespace "TMP TBS", u.profile, r.granted_role,
    r.admin_option, r.default_role
    FROM sys.dba_users u, sys.dba_role_privs r
    WHERE u.username = r.grantee and u.username like '%IMEI%'
    GROUP BY u.username, u.default_tablespace, u.temporary_tablespace, u.profile, r.granted_role,
    r.admin_option, r.default_role;
    IMEILOCAL USERS TEMP DEFAULT CONNECT NO YES
    SELECT tablespace_name FROM dba_tablespaces;
    SYSTEM
    SYSAUX
    TEMP
    USERS
    EXAMPLE
    DATA3
    SELECT name, password FROM user$ where name like '%IMEI%';
    IMEILOCAL passwordx
    select USERNAME, USER_ID, CREATED,                      COMMON, ORACLE_MAINTAINED from all_users WHERE username like '%IMEI%' order by 1;
              IMEILOCAL    117           24/07/2013 16:41:35       NO              N
    select * from user$ where name like '%IME%';
    117 IMEILOCAL 1 passwordx 3 2 24/07/2013 16:41:35 26/07/2013 12:20:25   0  1   0 0 DEFAULT_CONSUMER_GROUP  0   S:566C0A818AC42C203D49706D3586926A7656F5B16AA6C37E8FE10A1F779B;H:6FB057BA9F5B0690B93FD9A20695654D      
    Here you're my tnsnames.ora
    # tnsnames.ora Network Configuration File: C:\app\X05699SA\product\12.1.0\dbhome_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    LISTENER_ORCL =
      (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    ORACLR_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
        (CONNECT_DATA =
          (SID = CLRExtProc)
          (PRESENTATION = RO)
    ORCL =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = orcl.iecisa.corp)
    # Here you're my listener.ora Network Configuration File: C:\app\X05699SA\product\12.1.0\dbhome_1\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = CLRExtProc)
          (ORACLE_HOME = C:\app\X05699SA\product\12.1.0\dbhome_1)
          (PROGRAM = extproc)
          (ENVS = "EXTPROC_DLLS=ONLY:C:\app\X05699SA\product\12.1.0\dbhome_1\bin\oraclr12.dll")
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
          (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    I think my problem source from about CDBs and PDBs, that is new in Oracle 12c and I'm not configure correcly my new DB and neither my new User
    Thanks for all!!!

  • Oracle Text with Oracle TimesTen

    Hi!
    I'm trying to use Oracle Text with Oracle TimesTen In-Memory. In this customer, we are using Oracle Text to index the names of the company clients. There are about 13 million names to index. We're trying to speed up even more the search using Oracle TimesTen.
    Does anybody as any experience using simultanely this two technologies?
    Thanks in advance
    Tiago Soares

    TimesTen doesn't support the CONTEXT indextype or CONTAINS clause (or other domain indexes/operators), so you can't create Oracle Text indexes in it.

  • Oracle VM with Oracle E-business suite Release 12.1.1

    Hi
    We are migrating our Oracle E-business suite from IBM Power 5 AIX 6.1. to OVM Intel (x86_64) bit, we have tested the migration in our test environment. We want to know how good or bad is OVM with oracle e-business suite in production environment, and if anybody is working on production environment with the similar configuration in Production environment then please share your experience with us
    Thank you
    Regards
    Shahrukh Yasin

    Hi Sharukh,
    Virtualization of course the trend in modern era, and I personally advice you to have a thorough testing on performance and specifically simulate workloads and check the behavior. I don't personally go on to support Virtualization on Production environment as it incurs additional cost like CPU usage, memory usage borrowed by other environment being virtualized. And as it does not directly work with the hardware. May be some will be against this point, but I see as if it incurs additional resources. Being said this, I am not completely against Virtualizationas long as it is not a heavy 24/7 environment. I would go on to support the ideology, saying it's best to choose the right technology to right environment.
    Please refer following links for more information:
    https://blogs.oracle.com/stevenChan/entry/ebs_support_policies_for_virtualization_technologies
    https://blogs.oracle.com/stevenChan/entry/virtualization_ebusiness_suite
    https://blogs.oracle.com/stevenChan/entry/virtualization_the_ebusiness_s
    https://blogs.oracle.com/stevenChan/entry/using_oracle_vm_with_oracle_eb
    Using Oracle VM with Oracle E-Business Suite Release 11i or Release 12 (Metalink Note 465915.1)
    Regards,

  • Oracle RAC with Oracle Linux Based RAC Applications

    What are the advantages of using Oracle Linux Based RAC applications (also known as Linux Oracle Projects) with Oracle Database RAC 10g ?

    Personally, I find RAC to be about 1000% easier to manage on Linux...than on what? And why?
    Beacause personally I can't see difference in RAC management between Linux and Solaris (i.e.).

  • Oracle Portal with Oracle Web Cache

    How can I configure Oracle Portal (or Web Cache) to work together?
    I have installed and started both of them. Now, Web Cache works fine with standard html pages (for example Apache docs) but after trying to reach portal the url is redirected to standard port - on which Portal runs (Web Cache works on 1100 and Portal on 7778).
    So it seems that portal pages are not cached.
    Web Cache:
    Application Web Servers:
    hpwin 7778 100 30 5 / 10
    Where can I find any information about that?
    best regards
    KJ

    Portal PM, I thought you said that this solution would not work. Everyone I have heard so far has said that you cannot configure webcache to work with Portal documents. Does this work or does it not?
    Read the messages below from the bottom up.
    It's not possible to do that today.
    In 9.0.2 (the next release) we will be using WebCache configured out of the box so you won;t need to, however, till then you cannot use webcache with Portal 3.0.x
    Thanks
    Portal PM
    Title : re:Oracle Portal with Oracle Web Cache O/S : N/A POST: REPLY (W/QUOTE)
    Author : Agus Jaelani Type : Question
    Date : Feb 4, 2002 23:11 PT
    please try using this configuration on http.conf
    Port <webcache port>
    Listen <apache listen port>
    ServerName <webcache hostname>
    you must running ssodatan script again.
    Note :
    this config only make portal work together with webcache.
    Title : re:Oracle Portal with Oracle Web Cache O/S : N/A POST: REPLY (W/QUOTE)
    Author : Krzysztof Jungowski Type : Question
    Date : Feb 5, 2002 06:58 PT
    Thanks a lot. It works.
    best regards
    Krzysztof Jungowski

  • Oracle workflow  with oracle stardard edition 10g

    I have read this document id on metalink about the difference between different edition of oracle database 10:
    271886.1
    but there is anything about oracle workflow.
    Can I use Oracle workflow with oracle stardard edition 10g?

    I would suggest to get in touch with your Oracle vendor to find out more details on this one. Looks like an additional license.

  • Oracle Timesten with oracle apex

    I use Oracle 11gr2 and apex 4.2.4 how can i use oracle timesten with oracle apex?
    I want to use timesten to improve  performance on report by adding two tables to oracle timsten.

    As far as I am aware, recent (11g onwards) releases of Oracle Heterogenous services do not work with TimesTen as they now require an OBC 3.x driver and the TimesTen driver is currently 2.0. Even if they did work, this would not be a useful solution. It might allow Apex to access TimesTen after a fashion (though that is far from certain) but the performance would be very poor due to all the network hops and software layers between the application and TimesTen.
    If you put one or two tables in TimesTen then one problem from an Apex perspective is that it is now dealing with two databases; the TimesTen cache containing two tables and the oracle database containing all the other tables. Is Apex designed to cope with this? Does it have the concept of data located in multiple databases where one of them is not the Oracle database? Also, do you need transactions or queries (joins) that span the TimesTen tables and the tables in Oracle DB? If so then this also  will not work as that is not possible today.
    I have to say that as far as Apex goes I think this is likely a non-starter. However, if you do try it and have any success then please do post the results here as we'd be interested to hear about it.
    Chris

  • Oracle Endeca with Oracle Insurance Policy Administration(OIPA)

    Hi All,
    Is there any document/integration installer available for Oracle Endeca with Oracle Insurance Policy Administration(OIPA)?
    Regards,
    Narottam

    I hit the same error during configuring it at WebSphere v6.1 ND. Where you updated the classpath? Is it under Application servers > {server name} > Process Definition > Java Virtual Machine > Classpath ?
    Many Thanks!!

  • Integration of Oracle Apex with Oracle Applications R12

    How can I integrate Oracle Apex with Oracle Applications R12? The requirement is like by clicking a menu the user will see an apex report without giving again the user name and password. By simple menu attachment it's asking for apex login credentials. But I want it will redirect to the apex page without asking for user name and password.
    Please help.

    Hi,
    Have a look at this thread.
    Installation Procedure for APEX
    Installation Procedure for APEX
    Regards,
    Hussein

  • Is there a way to integrate Oracle UCM with Oracle ESB

    Hi,
    Is there a way to integrate Oracle UCM with Oracle ESB similar on the lines of BPEL integation ?
    Regards,
    Sesh

    maxsap wrote:
    ..AndrewThompson64 : as far i can understand this is only for viewing purposes like adding a filefilter (please correct me if i am wrong) and can add double click support, i want my program to be able to add some sourtcuts to the right click menu (e.g. winrar add this " add to archive"," compress and email"...) is this possible using java and jnlp?It is for 'open' or 'print' for specific file types. The associations are set up at time of installation so that if a user right clicks a claimed file, the OS should offer to send the document to (possibly a group of programs which include) our application.
    I am not sure what you mean by "program to be able to add" shortcuts. Do you mean the application might need to do this after first being installed?
    What exactly are the menu items the program tries to add? e.g. 'open', 'print', 'add to archive', 'crash & burn'...

  • How to integrate oracle webcenter with oracle webcenter Sites?

    How to integrate oracle webcenter with oracle webcenter Sites?

    This very much depends on what you mean by the first "oracle webcenter" and what kind of integration you are looking for.
    Oracle WebCenter contains three main product lines:
    - Oracle WebCenter Portal,
    - Oracle WebCenter Sites,
    - and Oracle WebCenter Content.
    Since the newest version 11.1.1.8 it is possible to store Sites' assets in WebCenter Content.
    WebCenter Portal, where the name WebCenter originated from, is another front-end technology, so it would rather co-exist next to Sites than integrate with them. See this thread WebCenter Portal and WebCenter Sites Integration for more details.

Maybe you are looking for

  • TS3988 I can't sync my iCloud with my mack using Mavericks, what can I do?

    Hi I'm trying to sync my power book with the iCloud, I'm using Mavericks 10.9.4 and is just not working! Here is a quick video of my problem so you can understand more in detail of what's going on! http://youtu.be/qnRWgoP-9K8 Thanks for the help!

  • How do I create a report with a search button

    All, This may be a dumb question, but I am trying to create a report in Portal 3.0.9 with a search button. I created the report using the 'create report by query' option and that was fine. But what I really want to see is the customization page that

  • How does TopLink determine external transaction controller is active?

    Weblogic 9.2. I am having a problem with a new EJB: getExternalTransactionController() is null, getActiveUnitOfWork() is null, and yet when my code issues a commit, TopLink throws 4002 [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.3.0) (Buil

  • HDR Pro Doesn't work

    First of all sorry about my bad English (my nation is German), but I hope you'll understand my problem: I installed Photoshop CS6 in 64 Bit and 32 Bit. In both versions I get an error using the automatic function "HDR pro". I used the funtion long ti

  • What is meant by sender webservice in my case

    In case of HTTP-XI-non-sap system scenario, I want to test the scenario with some sample data. What could be the reasons that the data is not recieved at the other end? what are possible way to debug it? Regards, XI developer.