Oracle client for CA Erwin data modeler

Does anyone know how to install and configure oracle client for Erwin data modeler?
CA tech support says check with oracle

>
I need some help understanding what client means.
>
Client is any server that connects to a database. I am assuming that CA will be installed on a Windows XP machine and it will connect to a remote database on another server. I am assuming since you have not provided any details.
>
I can upgrade to 11g database. No problem
>
OK - not sure what this has to do with your issue.
>
I am looking for the oracle software that connects to CA Erwin
>
See my links posted above
>
I am not looking for Oracle database install
>
The client install does not install a database - it installs the necessary components needed to connect to a remote Oracle database.
>
Please be more specific.
>
More specific with what ? The more lucid details your provide, the better the quality of the responses on these forums.
HTH
Srini

Similar Messages

  • Where can i find an oracle CLIENT for win98??

    I need an oracle client for win98 to access a 9i database, where
    can i find it?
    Best Regards
    Erik Rangel de Oliveira

    any oracle 8i client or oracle 8 client can connect to oracle 9i
    database if that helps.
    The clients can be obtained from the technet site.

  • How  to maintain version in ERwin Data Modeler

    Hi all
    Please tell me
    how to maintain version in ERwin Data Modeler
    regards

    In SharePoint, navigate to the form library, and then click Library Tools > Library > Settings > Library Settings.
    On the Form Library Settings page under General Settings, click
    Versioning settings.
    On the Versioning Settings page under the Document Version History section, select either the
    Create major versions option or the Create major and minor (draft) versions option, and click
    OK.
    http://www.bizsupportonline.net/blog/2012/10/version-control-infopath-forms-templates-sharepoint-libraries/
     Or
    plan this wsp nfoPath_VersionHistory.wsp
    http://infopathversioning.codeplex.com/

  • Oracle Business Analytics Fusion Edition Data Model Reference

    Dear All,
    I want to make a study of the pre-built warehouse data schema, and there's a book named <Oracle Business Analytics Fusion Edition Data Model Reference> from the installation and configuration guide, but i cannot found it in the metalink and metalink3.
    Could anybody tell me how to access the reference or provide me a link to it?
    Any help would be highly appreciable.
    Best regards,
    Zigzag

    Oracle Business Analytics Warehouse Data Model Reference Version 7.9.6 (Doc ID 819373.1)
    Oracle Business Analytics Warehouse Data Model Reference Version 7.9.6 Applies to: Business Intelligence ... Warehouse. This data model reference document
    Doc Type:REFERENCEModified:5/5/2009
    https://metalink3.oracle.com/od/faces/secure/km/DocumentDisplay.jspx?id=819373.1&h=Y

  • Oracle Client for DOS

    Hi!
    Where can I download Oracle Client for DOS to connect to Oracle Server version 7, 8, 9 or 10g?
    Thank you for any advice.
    Igor Shulgin
    Chelyabinsk, JSC Uralsvyazinform

    Oracle hasn't produced a DOS client at least in the past 6 years. I'm not aware of a DOS client that has ever been produced, but I can't say that for sure. If there was a DOS client in the Oracle 6 or 7 days, getting it would be a challenge-- you'd have to contact Oracle support to see if that have an archive that goes back that far. Most likely, you'd have to find someone who still had the old media. Even if you did, though, an Oracle 6 or 7 client cannot connect to an Oracle 9i or 10g database. An Oracle 6 client can't even connect to an Oracle 8i database.
    In other words, you probably can't connect from a DOS machine. If you install Windows, you can use the Windows client from a DOS window.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Oracle client for SCO Unix

    Hi,
    Where I can't download oracle client for SCO Unix ?
    Thanks.

    You're right. You can't download Oracle client for SCO Unix.
    I'm not sure what you mean by "SCO Unix", but if you go to MetaLink and look at the Certification matrix, you see two different listings that make reference to SCO:
    Unixware (SCO) - Terminal Oracle release for this platform was 8.1.7.
    Intel SCO Open Unix 8 with LKP - Terminal Oracle release for this platform was 9.0.1.
    So, I think you're out of luck.
    -Mark

  • ADF custom binding for given service data model

    hi
    I have this business service that has a given data model. I would like to bind ADF Faces components to this data model.
    two examples:
    (1) The data model has a date attribute somewhere that holds the date of when something has been "checked"/"approved". The user interface should present this information as a regular checkbox.
    (2) The data model has some attribute as "multilingual text". It is like a regular text attribute, but the text (data) has been translated. The user interface should present this information as a regular text input field, but depending on some "selected"/"current" language.
    I looked at this example from Steve Muench about custom binding:
    http://otn.oracle.com/products/jdev/tips/muench/custombinding/CustomAttrBindingClass.zip
    I have found some "solution" to implement the kinds of custom binding I need:
    http://verveja.footsteps.be/~verveja/files/oracle/CustomBindingStuff-v0.08.zip
    (Check the README.txt file.)
    I extend JUCtrlAttrsDef and JUCtrlAttrsBinding, introduce a ConversionProxyRule interface and added meta-data to the <x>PageDef.xml files.
    JDeveloper shows warnings like these in the "Compiler - Log", but it all seems to work fine:
    Warning(55,62): <Line 55, Column 62>: XML-24534: (Error) Element 'NamedData' not expected.- questions:
    (1) Do I really need all this, have I missed some typical approach for this?
    (2) How do I now that "extending" the binding this way, doesn't break in the next JDeveloper release?
    (3) What alternatives are there to approach this kind of "binding requirements"?
    many thanks
    Jan Vervecken

    (1) Is the simplest overall and the solution I myself would do, but given your comments....
    (2) This would be the second easiest, but would involve some delegation, sure.
    (3) Involves creating custom binding objects, which while possible, we don't have much documentation on that
    JDeveloper shows warnings like these in the "Compiler - Log", but it all seems to work fine: Warning(55,62): <Line 55, Column 62>: XML-24534: (Error) Element 'NamedData' not expected.
    This is an XMLSchema validation failure since the schema for the <attributeValues> element in that namespace does not allow <NamedData> children, only the <action> element does. You can extract all the schemas from the adfdt_common.jar file in the ./adfdt/lib directory to have a closer look at that.
    - questions:
    (1) Do I really need all this, have I missed some typical approach for this?
    I mentioned a straightforward approach that in my opinion doesn't qualify as radically altering your data model, but I respect your opinion to see that differently of course. :-)
    The approach I mentioned would be the typical approach for this case.
    (2) How do I now that "extending" the binding this way, doesn't break in the next JDeveloper release?
    There is no 100% guarantee other than the fact that we try our best not to perform breaking changes since keeping upward compatibility is something we've tried to do since the beginning.
    (3) What alternatives are there to approach this kind of "binding requirements"?
    We've discussed the three alternatives above that I can think of. This doesn't preclude others, but those are the first three we both thought of... I hope others chime in with some insights based on there experiences, too.

  • Graphical Oracle Client for Linux

    Hello,
    I'm used to work with pl/SQL Peveloper at work but at home I use linux. I wonder if there is a similar powerfull graphical client for oracle that runs on linux.
    I need at last the following features:
    -view/edit data in tables
    -create/test views
    -create/test stored procedures
    -create tables using diagrams or vice versa (nice to have)
    Any suggestions? What is the best linux software for that purpose?
    David

    And JDeveloper is another. (Although I'd call it power-hungry rather than powerful ;) )

  • Metadata from Erwin data model to BO Designer

    Hi,
    I have generated a CWM XML file from ErWin, that contains the physical table names of all tables in the model. I am using universe "metadata exchange" to convert this data model into a universe. The first time "create universe" is happening fine.
    The problem is while updating the model.
    There is a "owner" field specified in Erwin table. If thats left empty, the tables in the universe schema are generated as "unnamed_NNN.<TABLE_NAME>". (NNN is a number)
    Obviously I have to remove the unnamed_NNN from the tables so that it will recognise the default database for the connection.
    Say, the metadata has undergone some changes and we want to update the universe with new metadata. I used "metadata exchange" to update the universe from the model. At this time, it creates a new table and class with "unnamed_NNN.<TABLE_NAME>", instead of updating my TABLE_NAME class and object definition with the changed metadata.
    This basically means update doesn't function as expected. Can anyone suggest if this is a limitation of the metadata exchange or am I doing something wrong ?

    I am trying to do the same thing using ER/Studio and have the same problem.
    In addition, the joins from the model are not being reflected in the universe.
    Vikas

  • Oracle 11gR2 support in SQL Data Modeler

    Hi ,
    I am using SQL DM 3.0.0.665. I need your thoughs on following.
    We find some interesting features in Oracle 11gR2, but I am trying to figureout, which of those are feasible on SQL data Modeler.
    Eg. Virtual Column on table definition. Are we able to model this in SQL data Modeler?
    What is the best way to do that?
    Any idea?
    Thanks in helping us out.

    Hi,
    If you don't set the datatype (i.e. leave it as "unknown", or set it back to "unknown"), it will generate
    TEST_V AS ( CASE WHEN EVENT_NAME = 'XXXX' THEN 'MMMM' ELSE 'KKKK' END )
    The Oracle 11gR2 documentation for the virtual_column_definition clause notes that "The keyword VIRTUAL is optional and for syntactic clarity."
    So the fact that Data Modeler does not output the keyword VIRTUAL does not make any difference to the effect of the SQL statement.
    David

  • Oracle BI Publisher 11g - Known Data Model Limitations

    Hi
    I'm new to BI Publisher 11g. I'm attempting to find out what the known limitations of BI Publisher 11g are.
    In particular, I would like to know the maximum number of queries allowed per data model or if a report may be based on multiple data models.
    Scenario:_
    My organization requires an electronic reporting book (PDF document) effectively consisting of *40-50* data tables and graphs. Someone has sold the idea to IT and the business that BI Publisher as the tool that deliver this type of functionality. Having used the tool now for the last couple of days, it's starting to look it's not the case.
    How do i achieve my ultimate goal of combining disparate report output into 1 huge document?
    Do I develop each reporting section as a separate data model/report pairs outputting XML files and then combine all XML files into 1 target document?
    If anyone can please give me some advice on how to go about this, it would be greatly appreciated.
    Thanks
    Greg

    This is related to browser, try it in some other browser.or else check ur bi publisher settings and data source configurations. Mostly his wil happen if u changed some thing in blaf rich plus.css changes

  • 10.1.0.3 Oracle client for SPARC (64-bit) not on Metalink

    All,
    I cannot find the 10.1.0.3 Oracle client on Metalink account for SPARC. Is this available anywhere?

    You have to download the base version also, not only patch set!
    To get the patch set:
    click tab Patches & Updates, then click link "Quick links to latest ...".
    Now choose Oracle Database, scroll down to Solaris SPARC 64bit -> patch set versions 10.1.0.3 to 10.1.0.5.
    As far as I know, I dont deal with Client installs much, you can upgrade both Client and Database with the "Database" patch sets.
    Message was edited by:
    orafad

  • Oracle client for siebel server configuration

    Hi ,
    To install siebel as prerequisite we are installing oracle client on the siebel server machine. Our client is providing ldap.ora instead of tnsnames.ora file. Through out my earlier projects we used to have tnsnames.ora entry which is having connection details of database. CAn you Please confirm instead of having tnsnames.ora , can we use ldap .ora which is having Db server details in it. Have you ever seen other clients using this way without tnsnames.ora for siebel installation.
    Can you please provide any documentation which confirms that we must need tnsnames.ora, not ldap.ora.
    Thanks much in advance.

    Hi,
    Have a look at these documents
    http://docs.oracle.com/cd/E11882_01/network.112/e10835/ldap.htm#NETRF011
    Is It Possible To Use Ldap.Ora On The Client To Get Tnsname Entries From An Oid? (Doc ID 461151.1)
    Using TNS_ADMIN with LDAP.ORA and Net Manager (Doc ID 189627.1)
    What Is The Search Order For The LDAP.ORA File ? (Doc ID 363283.1)
    Thanks,
    Krishna

  • Oracle Client for Windows 2008 R2 server to connect to Oracle database 9iR2

    Hi,
    We are running Oracle 9.2.0.7 on Sun solaris (64 Bit) 5.10 and trying to install client on new Windows 2008 R2 (64 - bit) server. (Before this 2008 R2 we were using Windows 2003 32 bit and 9iR2 client was working great.) I can't install 9iR2 clinet and I tried installing 10gR1, 10gR2 and 11gR1 but none of them worked. It is only allowing me to install 11gR2. When I installed 11gR2 client I am getting some 'overflow exception on an arithmetic operation' error.
    1.) Do I have any choice for client installation or only 11gR2?
    2.) Any solution for overflow error?
    Thanks,
    -H

    May I know the reason why ODBC driver is not include in option like Runtime?Oracle software utilizes SQL*Net (not ODBC) to connect to Oracle RDBMS.
    ODBC is not required by Oracle client software to connect to Oracle RDBMS.

  • Requires Oracle client for windows server 2008 Version 6.1

    Hello
    I am using Windows 2008 Server Version 6.1 (64 Bit). I want to install Oracle client on this server. Which version is suitable for my requirement and from where i can download it.
    Thanks
    Sijo Thomas

    user12248518 wrote:
    I am in the same boat, I have downloaded what was told to download and it doesn't install it keeps saying "Unknown" 3 times in a popup when I try to install.Oracle has roughly 3,000 products. You downloaded 'what you were told' - one of those 3,000 products. And it didn't work.
    The amount of information you provide is surprisingly sparse, assuming you want assistance.
    So - if you want help, you might wnat to provide some information:
    - the operating system (including edition, and major service pack if WIndows, or distro && major/minor release and kernel if *nix)
    - the URL froim which you downloaded
    - the country yuo are in (since ORacle could redirect to several sitres based on region)
    - the command or executable, including directory path, you run or double-click on
    - the 'exact' error message, or if a generic one like "Unknown", perhaps a screen shot to convince us that it is actually such a generic message
    It's just a suggestion, but answering in such detail actually tells us you are serious about resolving the issue - you put in effort, and that may convince us to return some effort.

Maybe you are looking for