Connetion of BI 7.0 to external oracle 10G R2 database system

Dear Experts,
We have BI 7.0 system with MS SQL server as database and we want to
connect it to database Oracle 10G R2.For that we followed the following
procedure.
1) In order to connect to the enterprise database, Oracle 10gR2 client
(runtime option should be fine) needs to be installed (you need admin
rights) on the machine where the connection is requested. -->We have
installed it.
2) You should make sure that Database server is reachable from the BI
SAP machine (ping, telnet, traceroute, etc).--> The tnsping is reaching
the database host.
3) Then a TNS connection name needs to be created --> We have created
the same.
Now after doing the above activities when we tried to create
sourcesystem in RSA1 we got the error as :
Cannot acces source system <External_dbname>
In the system log it is giving error as :
Database error 12154 at CON
ORA-12154: TNS:could not resolve the connect identifier
The Tnsnames.ora,Listener.ora and sqlnet.ora files are as follows:
<TNSNAMES.ORA>
tnsnames.ora Network Configuration File: C:\oracle\product\10.2.0\client_2\network\admin\tnsnames.ora
Generated by Oracle configuration tools.
ENTPRD =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = TCP)(HOST = 10.190.0.174)(PORT = 1521))
    (CONNECT_DATA =
      (SERVICE_NAME = entprd)
EXTPROC_CONNECTION_DATA =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    (CONNECT_DATA =
      (SID = PLSExtProc)
      (PRESENTATION = RO)
<TNSNAMES.ORA>----
<LISTENER.ORA>
listener.ora Network Configuration File: C:\oracle\product\10.2.0\client_2\network\admin\listener.ora
Generated by Oracle configuration tools.
SID_LIST_LISTENER =
  (SID_LIST =
    (SID_DESC =
      (SID_NAME = PLSExtProc)
      (ORACLE_HOME = C:\oracle\product\10.2.0\client_2)
      (PROGRAM = extproc)
LISTENER =
  (DESCRIPTION_LIST =
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = TCP)(HOST = EIMREYMDD0.eimskip.net)(PORT = 1521))
      (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
<LISTENER.ORA>----
<SQLNET.ORA>
This file is actually generated by netca. But if customers choose to
install "Software Only", this file wont exist and without the native
authentication, they will not be able to connect to the database on NT.
SQLNET.AUTHENTICATION_SERVICES = (NTS)
<SQLNET.ORA>----

Dear Experts,
We have BI 7.0 system with MS SQL server as database and we want to
connect it to database Oracle 10G R2.For that we followed the following
procedure.
1) In order to connect to the enterprise database, Oracle 10gR2 client
(runtime option should be fine) needs to be installed (you need admin
rights) on the machine where the connection is requested. -->We have
installed it.
2) You should make sure that Database server is reachable from the BI
SAP machine (ping, telnet, traceroute, etc).--> The tnsping is reaching
the database host.
3) Then a TNS connection name needs to be created --> We have created
the same.
Now after doing the above activities when we tried to create
sourcesystem in RSA1 we got the error as :
Cannot acces source system <External_dbname>
In the system log it is giving error as :
Database error 12154 at CON
ORA-12154: TNS:could not resolve the connect identifier
The Tnsnames.ora,Listener.ora and sqlnet.ora files are as follows:
<TNSNAMES.ORA>
tnsnames.ora Network Configuration File: C:\oracle\product\10.2.0\client_2\network\admin\tnsnames.ora
Generated by Oracle configuration tools.
ENTPRD =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = TCP)(HOST = 10.190.0.174)(PORT = 1521))
    (CONNECT_DATA =
      (SERVICE_NAME = entprd)
EXTPROC_CONNECTION_DATA =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    (CONNECT_DATA =
      (SID = PLSExtProc)
      (PRESENTATION = RO)
<TNSNAMES.ORA>----
<LISTENER.ORA>
listener.ora Network Configuration File: C:\oracle\product\10.2.0\client_2\network\admin\listener.ora
Generated by Oracle configuration tools.
SID_LIST_LISTENER =
  (SID_LIST =
    (SID_DESC =
      (SID_NAME = PLSExtProc)
      (ORACLE_HOME = C:\oracle\product\10.2.0\client_2)
      (PROGRAM = extproc)
LISTENER =
  (DESCRIPTION_LIST =
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = TCP)(HOST = EIMREYMDD0.eimskip.net)(PORT = 1521))
      (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
<LISTENER.ORA>----
<SQLNET.ORA>
This file is actually generated by netca. But if customers choose to
install "Software Only", this file wont exist and without the native
authentication, they will not be able to connect to the database on NT.
SQLNET.AUTHENTICATION_SERVICES = (NTS)
<SQLNET.ORA>----

Similar Messages

  • Number of available records in Oracle 10g express database

    Hi,
    I am facing problems in getting the number of available records in Oracle 10g express database with the following query.
    string filename = dbObject.FILENAME;
    string vendorID = dbObject.VENDOR_ID;
    OracleCommand myCommand = _connection.CreateCommand();
    myCommand.CommandText = "SELECT COUNT(*) FROM ASSET_PROCESSING_OUTPUT WHERE *FILENAME = :filename AND VENDOR_ID = :vendorID*";
    myCommand.CommandType = CommandType.Text;
    myCommand.Parameters.AddWithValue("filename", filename);
    myCommand.Parameters.AddWithValue("vendorID", vendorID);
    OracleDataReader reader = myCommand.ExecuteReader();
    Using this command how can I get if the record exists in the database with the given value.
    Thanks in advance.
    punit

    It appears you're only executing the statement. You need to fetch the result to see the value returned by the SELECT statement.

  • In Oracle 10g global support system,I set parameter of NLS_DATE_FORMAT.(98)

    In Oracle 10g global support system,I have set parameter of NLS_DATE_FORMAT.I am wondering about that whether it could affect the default value of NLS_TIMESTAMP_FORMAT?
    Message was edited by:
    frank.qian

    test@ORCL> select sysdate from dual;
    SYSDATE
    24-NOV-06
    Elapsed: 00:00:00.00
    test@ORCL> DECLARE
      2     checkout TIMESTAMP(3);
      3  BEGIN
      4     checkout := '22-JUN-2004 07:48:53.275';
      5     DBMS_OUTPUT.PUT_LINE( TO_CHAR(checkout));
      6  END;
      7  /
    22-JUN-04 07.48.53.275 AM
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.00
    test@ORCL> alter session set nls_date_format="MM/DD/YYYY";
    Session altered.
    Elapsed: 00:00:00.00
    test@ORCL> select sysdate from dual;
    SYSDATE
    11/24/2006
    Elapsed: 00:00:00.00
    test@ORCL> DECLARE
      2     checkout TIMESTAMP(3);
      3  BEGIN
      4     checkout := '22-JUN-2004 07:48:53.275';
      5     DBMS_OUTPUT.PUT_LINE( TO_CHAR(checkout));
      6  END;
      7  /
    22-JUN-04 07.48.53.275 AM
    PL/SQL procedure successfully completed.
    test@ORCL> alter session set NLS_TIMESTAMP_FORMAT = 'DD/MM/YYYY HH:MI:SS.FF';
    Session altered.
    Elapsed: 00:00:00.00
    test@ORCL> DECLARE
      2     checkout TIMESTAMP(3);
      3  BEGIN
      4     checkout := '22-JUN-2004 07:48:53.275';
      5     DBMS_OUTPUT.PUT_LINE( TO_CHAR(checkout));
      6  END;
      7  /
    22/06/2004 07:48:53.275
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.00
    test@ORCL>
    test@ORCL>

  • Oracle 10g/11g database use on UEK versus Red Hat kernel? How widely used?

    Greetings
    is there any official or semi-official information regarding how widely used is Oracle UEK to run Oracle 10g/11g database (RAC or single-node) versus running Oracle database on Red Hat Linux or on Oracle Linux with Red Hat kernel ?
    I am asking because at my customer site there is a perception that Red Hat (or Oracle Linux with Red Hat kernel) is much more widely used in production to run Oracle 10g/11g database and therefore it will provide better stability even if the performance may be somewhat reduced compared to Oracle UEK option.
    So I need some sort of approximate percentage numbers of how well is UEK used in Linux Oracle community to run Oracle 10g/11g databases.
    Many thanks.
    Yuri B

    The problem with the world is that the intelligent people are full of doubts, while the stupid ones are full of confidence. Well, in my opinion, a higher market share does not reflect the quality or reliability of a product. Take MS Windows for example. Unfortunately, the reason for success is often not due to knowledge and experience, but rather due to fear and sheep effect or herd behavior.
    Perhaps you can use other arguments or questions to help you to make a decision, eg.:
    Oracle has a better understanding of what Oracle products require than Red Hat.
    Oracle takes full responsibility for the OS and Database, no finger pointing.
    Oracle tries to provide a better product than the RHEL kernel.
    The Oracle UEK kernel contains Oracle driver software, not available for RHEL 6 or later.
    Oracle updates are free of charge, RHEL requires a subscription.
    Oracle as a company is about 20 times bigger than Red Hat.
    There can be reasons that require the use of the original RHEL kernel, for instance if the vendor of a specific driver for your hardware demands it. But otherwise...

  • Install APEX to work on existing Oracle 10g R1 database

    I want to use APEX on an existing Oracle 10g R1 database. If I install it normally with the program downloaded from your site, it installs its own database that you use.
    How can I set / install it to use the existing database instead of its own database?
    Elsie Pretorius

    Hi guys,
    Thanks for the info and input. Is there anybody have sucessfully done this. Most of the info that out there, the README in the patchset all pointing to upgrading the OCS, not installing the OCS on top of an existing 10g AS and DB. I'm thinking installing the OCS R2, and then patching and upgrade it to 9.0.4.2 or 4.3 and then point or move it to the existing 10AS and DB. This is where I'm quit blur at the moment.
    Anyway thank for all the info.
    Regards
    Din

  • Can we access Oracle 10g R2 database from Oracle 11g Client

    Hi,
    Can any1 tell me can we access Oracle 10g R2 database from Oracle 11g Client ? I m unable to find a Oracle Client 10g R2 for Windows 7 32 bit.
    Below link is for Vista only
    http://www.oracle.com/technetwork/database/10203vista-087538.html

    832812 wrote:
    Hi,
    Can any1 tell me can we access Oracle 10g R2 database from Oracle 11g Client ? I m unable to find a Oracle Client 10g R2 for Windows 7 32 bit.
    Below link is for Vista only
    http://www.oracle.com/technetwork/database/10203vista-087538.html
    Check this note for client/server compatibility
    Client / Server / Interoperability Support Between Different Oracle Versions [ID 207303.1]

  • Connect Oracle Developer / Designer to Oracle 10g XE database

    I have installed the Oracle 10g XE database on my PC. Also on the same computer I have installed Oracle 10g Developer Suite (Designer, Forms etc). The database runs ok without problem. However I cannot connect Designer to the database. I know a listner program (e.g. tsn listner) has to be installed for the purpose of connecting to the database. When starting the XE database a listner program also is started.
    My question:
    What do I have to do inorder to have the Designer connect to the XE database?
    R. Carson

    Is there any changes should I do?!Well sorry but I don't know. This sugesstion to copy sqlnet.ora file resolve my problems to connect with Developer 6i to 10g, but that is 10g EE in my office, not XE at home...
    Anyway your sqlnet.ora file look like very "default" but maybe is that O.K. on XE?
    Who knows?
    Message was edited by:
    Faust
    Edit: Try to search this Forum, I think, I saw few threads discussing theme "connect Developer 6i to XE" ... Good Luck!

  • Oracle 10g Lite Database User Creation

    Hi,
    I am using Oracle 10g Lite Database Release 3, I Like to Know How to Create a user in Oracle 10g Lite Database through Command ,Any Advice
    Thanks U
    SHAN

    Shan,
    In the same way you create user in any other oracle database. I recommned to check following Oracle Lite Sql reference document for creating user from command line.
    http://download.oracle.com/docs/cd/B19188_01/doc/B15917/sqcmd.htm#sthref487
    or
    sql> CREATE USER liteuser IDENTIFIED BY "litepassword"; -- And add required privs to the user.
    Regards

  • Oracle 10g Lite database - Replacement

    Hi,
    Can u mention some database similar to oracle 10g Lite database features which supports forms10gr2?]
    Note: Thin Database required.
    Regards
    Sreenivas

    Shan,
    In the same way you create user in any other oracle database. I recommned to check following Oracle Lite Sql reference document for creating user from command line.
    http://download.oracle.com/docs/cd/B19188_01/doc/B15917/sqcmd.htm#sthref487
    or
    sql> CREATE USER liteuser IDENTIFIED BY "litepassword"; -- And add required privs to the user.
    Regards

  • Does the Linux suse10.2 supports Oracle 10g XP database?

    Hi,
    I like to install Oracle 10g XE Database on my Linux suse10.2 operating system. I am not sure that the Linux suse10.2 OS supports the installation of Oracle 10g XE database. If it supports kindly let me know which version of 10g XE supports.
    Thanks in advance,
    Senthil.

    These Linux distributions are currently supported:
    Red Hat Enterprise Linux RHEL3 and RHEL4
    Suse SLES-9
    Fedora Core 4
    Red Flag DC Server 5.0/MIRACLE LINUX V4.0/Haansoft Linux 2006 Server (Asianux 2.0 Inside)
    Debian 3.1
    Werner

  • Not able to access Oracle 10g XE database home page on Windows XP?

    I wanted to practise pl/sql in my office pc. I installed Oracle 10g XE on my machine and after that I also started Agent from Services. However When i clicked on Database home page it doesn't start. Changing network configuration might create problem in network. Can anybody help me working out this problem or has any alternative to practise PL/SQL with tiny oracle database.
    Regards
    Manish
    Edited by: user11003855 on Apr 19, 2009 11:27 PM

    Did you configure loopback adapter?
    :p

  • Oracle 10g RAC Database Migration from SAN to New SAN.

    Hi All,
    Our client has implemented a Two Node Oracle 10g R2 RAC on HP-UX v2. The Database is on ASM and on HP EVA 4000 SAN. The database size in around 1.2 TB.
    Now the requirement is to migrate the Database and Clusterware files to a New SAN (EVA 6400).
    SAN to SAN migration can't be done as the customer didn't get license for such storage migration.
    My immediate suggestion was to connect the New SAN and present the LUNs and add the Disks from New SAN and wait for rebalance to complete. Then drop the Old Disks which are on Old SAN. Exact Steps To Migrate ASM Diskgroups To Another SAN Without Downtime. (Doc ID 837308.1).
    Clients wants us to suggest alternate solutions as they are worried that presenting LUNs from Old SAN and New SAN at the same time may give some issues and also if re-balance fails then it may affect the database. Also they are not able to estimate the time to re-balance a 1.2 TB database across Disks from 2 different SAN. Downtime window is ony 48 hours.
    One wild suggestion was to:
    1. Connect the New SAN.
    2. Create New Diskgroups on New SAN from Oracle RAC env.
    3. Backup the Production database and restore on the same Oracle RAC servers but on New Diskgroups.
    4. Start the database from new Diskgroup location by updating the spfile/pfile
    5. Make sure everything is fine then drop the current Diskgroups from Old SAN.
    Will the above idea work in Production env? I think there is a lot of risks in doing the above.
    Customer does not have Oracle RAC on Test env so there isn't any chance of trying out any method.
    Any suggestion is appreciated.
    Rgds,
    Thiru.

    user1983888 wrote:
    Hi All,
    Our client has implemented a Two Node Oracle 10g R2 RAC on HP-UX v2. The Database is on ASM and on HP EVA 4000 SAN. The database size in around 1.2 TB.
    Now the requirement is to migrate the Database and Clusterware files to a New SAN (EVA 6400).
    SAN to SAN migration can't be done as the customer didn't get license for such storage migration.
    My immediate suggestion was to connect the New SAN and present the LUNs and add the Disks from New SAN and wait for rebalance to complete. Then drop the Old Disks which are on Old SAN. Exact Steps To Migrate ASM Diskgroups To Another SAN Without Downtime. (Doc ID 837308.1).
    Clients wants us to suggest alternate solutions as they are worried that presenting LUNs from Old SAN and New SAN at the same time may give some issues and also if re-balance fails then it may affect the database. Also they are not able to estimate the time to re-balance a 1.2 TB database across Disks from 2 different SAN. Downtime window is ony 48 hours.Adding and removing LUNs online is one of the great features of ASM. The Rebalance will be perfomed under SAN. No downtime!!!
    If your customer is not entrusting on ASM. So Oracle Support can answer all doubt.
    Any concern .. Contat Oracle Support to guide you in the best way to perform this work.
    >
    One wild suggestion was to:
    1. Connect the New SAN.
    2. Create New Diskgroups on New SAN from Oracle RAC env.
    3. Backup the Production database and restore on the same Oracle RAC servers but on New Diskgroups.
    4. Start the database from new Diskgroup location by updating the spfile/pfile
    5. Make sure everything is fine then drop the current Diskgroups from Old SAN.
    ASM Supports many Terabytes, if you need to migrate 3 Database with 20TB each using this way described above would be very laborious .. .. So add and remove Luns online is one feature that must work.
    Take the approval from Oracle support and do this work using the ASM Rebalance.
    Regards,
    Levi Pereira

  • Oracle 10g/11g - Operating system support info required

    I want to know all the operating systems supported by oracle 10g and 11g. I searched through oracle tech. center, but failed to find this information.
    I want to know if oracle (10g/11g) is supported on Linux S/390?
    Thanks
    Mac

    Did you go through the certification matrix?
    http://www.oracle.com/technology/support/metalink/index.html

  • How to start Oracle 10g RAC database and clusterware?

    I have steps to stop the 10g RAC Database and clusterware but not sure about starting it.
    I have heard executing
    $crsctl stop crs --as root
    on each node
    will start the database,asm,nodeapps .Is that true?
    or we have to do that step by step like we do in stopping the clusterware and database below
    1.Stop the agent:
    cd to $AGENT_HOME/corpng04.amhc.amhealthways.net/bin, then run: ./emctl stop agent
    2.Stop the full database
    $ oracle_home/bin/srvctl stop database -d db_name
    3.Stop the ASM Instances on node1,node2
    $ oracle_home/bin/srvctl stop asm -n node -- I guess you can't give multiple nodes in one command with comma,you need to give this multiple times with diff node name
    4.Stop the NodeApps :vip,listener,oms and gsd
    $ oracle_home/bin/srvctl stop nodeapps -n node -- I guess you can't give multiple nodes in one command with comma,you need to give this multiple times with diff node name
    5.Stop the CRS cluster processes :those bloody 3 evmd,ocssd,crsd
    $su - root
    $CRS_home/bin/crsctl stop crs

    Paul R @ NL wrote:
    before is shutting down crs i tend to stop the instances and services via srvctl then stop crs via crsctl
    just the way i do it. not saying it's the right way but it is the one i am comfortable with.Good -) If we stop CRS, but forgot shutdown oracle instances ... we'll see shutdown abort in alert log file(that mean instances are shutdowned abort).
    We should shutdown instance before stop CRS anyway.

  • Oracle 10g Example Database

    How can I install the Example Database via Script?
    My System:
    Oracle 10g on SuSE Linux 8.2
    Thanks!

    Perhaps you will more chance to find a response with posting your question into Oracle By Example (OBE).<br>
    <br>
    Nicolas.

Maybe you are looking for

  • Enabling/disabling buttons problem

    Hello, I'm using jdev 10.1.3.3.0 and I want to enable/disable buttons based on the value in a tableSelectOne. I wrote a function isNextButtonEnabled() in my backing bean and I have set the disabled option of the nextButton (=CoreCommandButton) to #{!

  • Upgraded Mavericks 10.9.4 reverted to old OS X Lion Server login screen on cold boot

    Mac Pro Early 2008 Model Identifier: MacPro3,1 Processor  2 x 2.8 GHz Quad-Core Intel Xeon Memory  16 GB 667 MHz DDR2 FB-DIMM Graphics  ATI Radeon HD 2600 XT 256 MB Software  OS X 10.9.4 (13E28) Boot ROM Version: MP31.006C.B05 SMC Version (system): 1

  • Does Microsoft 2001 work with Leopard?

    Can't seem to get to work because it says leopard does not support classic. Does this mean to use office with leopard you have to go to office 2004? Help.

  • My external microphone isn't working on garageband OSX Lion

    i hate a Audio technica at 2050 and garageband doesnt seem to find it when i go to preferences like what i would usually do to switch from built in mic to external anyone has any idea whats going on?

  • Semi-transparent Screen Issue X1 2014

    Hey I have this strange issue with my X1 (had it for a few months now but had the issue since the beginning). Some colors, such as grey, make the edges of my screen semi-transparent as in I can see through to the application behind it. I don't believ