Can HFM & FDQM  run on Oracle Database 10.2.0.2 based on a 64bit server?

To enhance performances of HFM and FDQM, my customer would like to upgrade the Oracle DB server (10.2.0.2) that runs on Windows Server 2003, from 32Bit to 64Bit, that supports larger number of connections.
The HFM and FDQM are installed on Windows Server 2003 32Bit and will not move to the new 64Bit server so only the Oracle DB will be installed on the new 64Bit server.
Is it possible? Is there any document that explain it?
Thank you,
Yoram.

Hi,
I am facing another related problem. I have installed HFM 9.3.1.1 along with Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 in Windows server 2003 SP2. When I try to create udl by choosing Oracle Provider for OLE DB, the test connection succeed. but giving unknown error at the time of Application server configuration indicating to apply working udl file.
When I check the HFM installation guide, it tells to download and install the 'Oracle Provider for OLE DB' file from Oracle.com (as per page 21 of the installation doc).But the problem is that the 'Oracle Provider for OLE DB' file is not available for the aforesaid Oracle 10g version.
Can anybody guide me in the aforesaid problem? Please sent the link from where I can get the file for installation purposes.
Your help would be of great help.
Thanks & Regards...

Similar Messages

  • InstallCCRSQL can only be run in a database ORACLE_HOME, SQL*Plus not found

    Hi
    I tired using the in-built OCM feature available in WLS 10.3.3 (C:\Fusion11g\utils\ccr)
    I ran the bin\setupCCR.exe and gave the relevant details like CSI, country code and email id
    It was successful saying "Oracle Configuration Manager successfully started."
    then i tired - ccr\admin\scripts\installCCRSQL collectconfig -s xe
    But i am getting the
    InstallCCRSQL can only be run in a database ORACLE_HOME, SQLPlus not found.*
    ORACLE_HOME here set to ORACLE_HOME=C:\oraclexe\app\oracle\product\10.2.0
    Q1 - Can any one help me on this where i am going wrong..
    Q2 - when i tired to collect the configuration via - ccr\bin\emCCR.bat collect , i am getting the "Collection and upload done." message, but i dont find the ocmconfig.jar under ccr/state/upload folder. ???
    Thanks, Sesha

    I am facing the similar issue. Please can someone reply on this thread?

  • How many users/ schemas can we create in an oracle database?

    How many users can we create in an oracle database? Or how many users can oracle handle?
    Problem-
    I have to store information of ontologies (I will use countries instead) in db.
    I have to store information regarding countries.
    I have 13 tables in all to maintain for each country.
    Now there are two approaches:
    1) keep only 13 tables. Have an extra column in each table to indicate that a particular
    row stores information for which country.
    2) create a new user/ schema for each country. So we can get rid of the extra column
    needed in 1st approach.
    I have used the second approach. This is because number of entries in each table for a
    given country will be large.
    So initially when the s/w is installed I create a central-user. Each time data for new
    country has to be entered central-user creates a user/ schema, and creates tables for
    this user/ schema. The central user can access the tables of all the countries by
    country_name.table_name. By this approach I believe searching would be easy.
    If there is any flaw in my approach kindly mention it.
    Thank you

    There is no (practical at least) limit to the number of users & schemas you can have in Oracle.
    Your approach, however, is not going to scale nearly as well as the first option you outlined (adding a column). You are going to end up caching every possible variation of the various queries you're going to be executing because you will be referring to so many different tables, which is going to mean that you are doing a lot more work to parsing statements and generally churning through the shared pool. If you create enough users, you're liable to start hitting ORA-04030 errors because your shared pool is so fragmented.
    Additionally, you're likely going to end up with a whole lot of dynamically generated SQL to accommodate new schemas getting added over time which is going to cause you even more pain. Figuring out dynamically what table to join in is a heck of a lot more difficult for the programmer to write and for the database to handle than simply passing in a different country code.
    If you're concerned about having too much data, you can have your cake and eat it to by adding the country column and partitioning the tables based on country.
    Justin
    One other item I forgot to mention is maintainability. Having dozens or hundreds of "identical" schemas makes maintenance a huge pain because something like adding a new column now requires dozens or hundreds of separate DDL statements. You're almost guaranteed that some schema isn't going to be in sync-- it's going to miss a column or miss an index, etc.
    Message was edited by:
    Justin Cave

  • Can't access Home Page - Oracle Database 10g Express Edition...

    Hi,
    I have been running the Oracle Database 10g Express Edition on my Windows XP machine for years from this location:
    C:\Applications\OracleDatabaseExpress\app\oracle\product\10.2.0\server\Database_homepage.url
    In Properties of the Database_homepage.url file, the URL is:
    http://127.0.0.1:8080/apex
    However, when I double-click on the Database_homepage.url file, I get the message "The Page cannot be displayed" in IE. I do run the "net start OracleXETNSListener" utility first.
    I only ran it last week. After that, I did run a couple of virus checks that deleted a couple of trojan viruses.
    What could have gone wrong suddenly? Any help would be greatly appreciated. Thanks a lot!
    Edited by: markk2 on Mar 1, 2011 9:18 PM

    Hi Mark;
    Nice to hear issue solved ;) Please dont forget to change thread status to answered if it possible when u belive your thread has been answered, it pretend to lose time of other forums user while they are searching open question which is not answered,thanks for understanding
    Regard
    Helios

  • Which user is running the oracle database software?

    Hello,
    Is there any command to know which is the UNIX user who is running the oracle database software on the platform.
    A quick help will be highly appreciated.
    Thanks.

    Appreciate your help.
    This file does not exist on our UNIX env.
    Is'nt there any command for the same?
    Regards.

  • Can't create Connection to Oracle Database

    Hi i'm trying to create a simple connection to my oracle database and my projects compiles, but at the "createConnection" statement an SQLException is thrown.
    Well first of all my stats:
    Windows XP 32 bit
    Visual Studio 2005 (VC++ 8)
    Oracle Database 10g Express Edition Release 10.2.0.1.0
    OCCI
    I have already included the "..\OCI\include" directory to my projects additional include directories, the path to the new OCCI dll's and lib's to my additional library dierctories and i have also included the "oraocci10d.lib" to my additional dependencies for the linker.
    Now here is the code i'm trying to run (it's just the code of an OCCI sample modified to my preferences):
    1 #include <stdlib.h>
    2 #include <occi.h>
    3 #include <iostream>
    4 using namespace oracle::occi;
    5 using namespace std;
    6
    7 int main () {
    8     //create environment and connection
    9     string user = "myUser";
    10     string pw = "myPW";
    11     string db = "localhost:1521/XE";
    12     Environment *env = Environment::createEnvironment(Environment::DEFAULT);
    13     Connection *conn = env->createConnection(user, pw, db);
    14     cout << "Environment and Connection created" << endl;
    15
    16     //execute a SQL statement
    17     Statement *stmt = conn->createStatement();
    18     stmt->setSQL("INSERT into FRUITS (fruit, amt) VALUES ('apple', 10)");
    19     stmt->executeUpdate();
    20     conn->terminateStatement(stmt);
    21
    22     //terminate environment and connection
    23     env->terminateConnection(conn);
    24     Environment::terminateEnvironment(env);
    25     cout << "Environment and Connection terminated" << endl;
    26
    27     return 0;
    28 }
    The code crashes at line 13, where i'm trying to create the connection.
    Visual Studio breaks and is giving the information, that an SQLException occured.
    I looked for the Error code given by the exception and it's 24960.
    Well i've found some threads working around that problem, but nothing worked properly to my problem.
    Can anyone help me out of my problem?
    Addition: I've already debugged the code and the pointer to the environment is good, so this possible cause of the exception (Null-Pointer) is out!
    Thanks for any advice!
    Edited by: [email protected] on 08.06.2010 10:34

    Well i've found a post at a similar thread, where somebody told to try to compile and run the project in release mode.
    Incredibly it works fine, but only for release mode as i told.
    The debug mode is still having the same problem...
    If somebody has an idea how to solve this problem please let me know!
    Thanks, olf77.

  • Can data be fetched from Oracle Database to ApEx websheets?

    Hi,
    Oracle 11g R2
    ApEx 4.2.2
    We are in need of giving an MRU form for the customized data by the users. The number of columns will be defined dynamically by the end user. We thought of using apex's standard tabular forms, but they cannot have dynamic columns. We also thought of having manual tabular forms using apex collections, but there is a limitation that the collection can have maximum of 50 character datatypes, 5 numeric, 5 date and 1 each for clob and blob. The number of columns at runtime may exceed these numbers. so we ruled out this. We then thought of using apex websheets. We know that the data can be fetched from Oracle database to websheet reports, but the reports cannot be edited. We know that the data grid gives option to edit the data, but I couldnt find a way to fetch the data from database to it.  I understand that the data in the apex websheets can be queried from apex's meta tables apex$_ws_... views and somehow in a back door way of doing these can be updated to the business tables. But we also need to fetch the data  from Oracle database to the grid. I do not want to insert into the apex$_ws tables as Oracle does not support it. Is there any other possibility?
    Thanks in advance.
    Regards,
    Natarajan

    Nattu wrote:
    Thanks for your reply. Actually it is a data that is fully customized by the end user. These custom attributes are really stored as rows and a complex code returns them as columns at run time. So the number of columns is different user to user based on the number of rows they have.
    They'd never have got that far if I'd been around...
    They now want to edit them in a tabular form as well.
    Well once you've implemented one really bad idea, one more isn't going to make much difference.
    It rather sounds like you've got people who know nothing about relational databases or user interfaces responsible for the design of both. You need to be very, very, worried.

  • How can I connect to an oracle database remotely using telnet in DIAdem?

    I need to query an oracle database on a remote server and store the result back in DIAdem. Does anyone know how to telnet through diadem and return the result?

    DIAdem provides you with tools to connect to databases using SQL. Specifically, you can use SQL_Connect to open a connection to a database through a DSN (Data Source Name). The DSN has to be configured on the local machine (Control Panel -> Administrative Tools - > Data Sources) and has to point to the remote Database. You can map a network drive in the local machine so you can browse to your remote Database. The DSN will provide the link between DIAdem and the remote Database.
    If your communication has to be throught telnet, then I suggest you try to use an ActiveX control. VBScript doesn't support Telnet natively, but it does support ActiveX controls. You can create one from Visual Basic or try to find a telnet client that has one already.
    Best Re
    gards,

  • Can Forms Builder access non-Oracle Database?

    Does any one know whether Pracle Forms can access othe non-Oracle database via ODBC or JDBC to MS Access or MySQL?

    12282,
    In general, HTML DB gives you access to Oracle database facilities. These include heterogeneous services. Please search this forum for keyword "heterogeneous" and you can follow the threads that interest you.
    As for the comparison with brain surgery, I'd rank them about the same in terms of raw thrill.
    Scott

  • Running an Oracle Database Job as Administrator

    I have created an Oracle Database Job that executes a batch script. This batch script is supposed to creates some text files. However the batch file doesn't create the text files unless you run it as an administrator. How do I set the Oracle job so that it executes the batch script as an administrator?

    Try the usual DBA/ALL/USER prefixes for dictionary views:
    SQL> desc dba_scheduler_credentials;
    Name                                      Null?    Type
    OWNER                                     NOT NULL VARCHAR2(30)
    CREDENTIAL_NAME                           NOT NULL VARCHAR2(30)
    USERNAME                                  NOT NULL VARCHAR2(64)
    DATABASE_ROLE                                      VARCHAR2(7)
    WINDOWS_DOMAIN                                     VARCHAR2(30)
    COMMENTS                                           VARCHAR2(240)
    SQL> desc all_scheduler_credentials;
    Name                                      Null?    Type
    OWNER                                     NOT NULL VARCHAR2(30)
    CREDENTIAL_NAME                           NOT NULL VARCHAR2(30)
    USERNAME                                  NOT NULL VARCHAR2(64)
    DATABASE_ROLE                                      VARCHAR2(7)
    WINDOWS_DOMAIN                                     VARCHAR2(30)
    COMMENTS                                           VARCHAR2(240)
    SQL> desc user_scheduler_credentials;
    Name                                      Null?    Type
    CREDENTIAL_NAME                           NOT NULL VARCHAR2(30)
    USERNAME                                  NOT NULL VARCHAR2(64)
    DATABASE_ROLE                                      VARCHAR2(7)
    WINDOWS_DOMAIN                                     VARCHAR2(30)
    COMMENTS                                           VARCHAR2(240)
    SQL>

  • How can we find if an oracle database is involved in GoldenGate replication

    Just by connecting to an oracle database using sqlplus, is there anyway to know if a database is involved in GoldenGate replication?
    i think dba_feature_usage_statistics is one option.
    Thanks
    Sarayu

    Hi,
    The best way that comes to mind is to make a grid where you have the entity and value dimensions on the rows and years and periods on the columns.
    For entities you select the parent and the child you want to look at, value dimension members <Entity Currency> and [Proportion]. For years you select those which you want to look at and all the periods.
    On the grid the [Proportion] should turn from green to red on one of the year/periods and that's the moment your entity became inactive to that parent.
    Hope this helps.

  • Do I need to install Oracle database 12c on PC to create tables for Weblogic server

    Hi,
    I am new to WebLogic and I am following a book Java EE Development
    with Eclipse published by PACKT Publishing to learn  Java EE.  I have installed Oracle Enterprise Pack for Eclipse
    on the PC and I am able to log into the WebLogic Server
    Administration Console and set up a Data Source.  However the next step is to create
    tables for the database.  The book says that the tables can be
    created using SQL script run from the SQL command line.
    I cannot see any way of inputting SQL script into the WebLogic
    Server Admistration Console.  Aslo there is no SQL Command line
    in DOS.
    I have put a previous question on the Oracle Forum about the above and I  was advised to use SQL Plus
    to create the tables for the weblogic server but no mention was made of installing Oracle database.
    I have downloaded InstantClient SQL Plus and Instantclient Basic on a PC and
    put the files into the same directory C:\SQLPlus but now I am having a problem in that it is
    looking for a username and password when I run the sqlplus.exe file.
    Now I assume that I need to have an installation of Oracle databse on the
    PC so as to be able to use SQL Plus.  Am I correct in this or can I create tables for the
    datasource in weblogic without an Oracle database?
    Thanks in advance for your help. Brian

    You should install it separately and also need to change the OBIEE's user.sh to tell it where is your Oracle client installed.

  • Oracle Database 10g(10.2.0.1.0) for Windows server 2008 SP1

    Hi,
    I would like to install Oracle database 10g on Windows server 2008 SP1. What is the supported version ?
    As I go through certification matrix on Oracle support, 10.2.0.5.0 is supported on Windows Server 2008, however I can I install it directly.
    Any help in this regard is highly appreciated.
    Thanks

    TheExplorer wrote:
    Thanks srini for your reply.
    Currently, we are running a lower version of database i.e 10.2.0.1.0 on windows server 2003. I need to migrate theses servers into virtual environment running Windows server 2008 64 bit.
    The document you referred applies to MS Windows 32 bit. However, I see that Oracle Database and Oracle Database Client 10g Release 2 (10.2.0.5) for Windows x64 are supported on Windows Server 2008 R2 x64.http://docs.oracle.com/cd/B19306_01/relnotes.102/b15680/toc.htm#CHDFHIEA
    From where, can we download the older versions of Oracle database as it is not available on OTN (The version of Oracle Database you are looking for is no longer available on OTN. Please visit any of the following links for current release information).
    Looking ahead for the right direction
    Thanks
    You have to open a service request at My Oracle Support.

  • Installation of Oracle Database 10g 10.2.0.3 on Windows 2003 Server

    Hi Guys,
    We have to install Oracle Database 10g 10.2.0.3 on Windows 2003.
    I read on net, metalink and OTN as well and it seems there is no single 10.2.0.3 setup available to do so.
    One has to upgrade from earlier version to 10.2.0.3.
    Is that so? Is this the only way?
    I mean if we want new and fresh 10.2.0.3 then don't we have installer for it?
    In this case we will have to install 10.1.0.2 and then upgrade? (we have 10.1.0.2 installable with us)
    And if at all that is the only path available then for 10.2.0.3 on Windows 32 bit - Patchset 5337014 i.e. p5337014_10203_WINNT.ZIP from metalink is the correct patch?
    Thanks in advance!
    Av.

    Hi guys,
    I donwloaded patchset - 5337014, and in its readme it is specified to download and install patch - 5601428.
    So I downloaded 5601428 and set ORACLE_HOME and then fired command -
    D:\oracle_pathces\5601428>optach apply
    and i got error saying -
    This Oracle Home does not have components/versions required by the patch.
    ERROR: OPatch failed during pre-reqs check.
    Following is the command and its output,
    D:\Oracle_Patches\5601428>opatch apply
    "set PERL5LIB=D:\ORACLE\PRODUCT\10.1.0\DB_1\perl\5.6.1\lib"
    "D:\ORACLE\PRODUCT\10.1.0\DB_1\perl\5.6.1\bin\MSWin32-x86\perl.exe D:\oracle\pro
    duct\10.1.0\db_1\OPatch\opatch.pl ..."
    OPatch Version 1.0.0.0.48
    Perl Version 5.006001
    Oracle Home = D:\ORACLE\PRODUCT\10.1.0\DB_1
    Location of Oracle Inventory = D:\ORACLE\PRODUCT\10.1.0\DB_1\inventory
    Oracle Universal Installer shared library = D:\ORACLE\PRODUCT\10.1.0\DB_1\oui\li
    b\win32\oraInstaller.dll
    Path to Java = "D:\ORACLE\PRODUCT\10.1.0\DB_1\jdk\jre\bin\java.exe"
    Location of Oracle Inventory Pointer = N/A
    Location of Oracle Universal Installer components = D:\ORACLE\PRODUCT\10.1.0\DB_
    1\oui
    Required Jar File under Oracle Universal Installer = jlib\OraInstaller.jar
    D:\oracle\product\10.1.0\db_1\OPatch\opatch.pl version: 1.0.0.0.48
    Copyright (c) 2001,2002,2003 Oracle Corporation. All Rights Reserved.
    This Oracle Home does not have components/versions required by the patch.
    ERROR: OPatch failed during pre-reqs check.
    D:\Oracle_Patches\5601428>
    Probably thought that following is the culprit -
    Location of Oracle Inventory Pointer = N/A
    so fired -
    D:\Oracle_Patches\5601428>optach lsinventroy
    gave following output -
    D:\Oracle_Patches\5601428>opatch lsinventory
    "set PERL5LIB=D:\ORACLE\PRODUCT\10.1.0\DB_1\perl\5.6.1\lib"
    "D:\ORACLE\PRODUCT\10.1.0\DB_1\perl\5.6.1\bin\MSWin32-x86\perl.exe D:\oracle\pro
    duct\10.1.0\db_1\OPatch\opatch.pl ..."
    Using ORACLE_HOME/oui to look up oui libs...
    Oracle Home = D:\ORACLE\PRODUCT\10.1.0\DB_1
    Location of Oracle Inventory = D:\ORACLE\PRODUCT\10.1.0\DB_1\inventory
    Oracle Universal Installer shared library = D:\ORACLE\PRODUCT\10.1.0\DB_1\oui\li
    b\win32\oraInstaller.dll
    Path to Java = "D:\ORACLE\PRODUCT\10.1.0\DB_1\jdk\jre\bin\java.exe"
    Location of Oracle Inventory Pointer = N/A
    Location of Oracle Universal Installer components = D:\ORACLE\PRODUCT\10.1.0\DB_
    1\oui
    Required Jar File under Oracle Universal Installer = jlib\OraInstaller.jar
    Accessing inventory... This may take up to 300 seconds.
    (retry 10 times, delay 30 seconds each time)
    ""D:\ORACLE\PRODUCT\10.1.0\DB_1\jdk\jre\bin\java.exe" -classpath "D:\oracle\prod
    uct\10.1.0\db_1\oui\jlib\OraInstaller.jar;D:\oracle\product\10.1.0\db_1\oui\jlib
    \srvm.jar;D:\oracle\product\10.1.0\db_1\OPatch\jlib\opatch.jar;D:\oracle\product
    \10.1.0\db_1\oui\jlib\xmlparserv2.jar;D:\oracle\product\10.1.0\db_1\oui\jlib\sha
    re.jar;." -Dopatch.retry=10 -Dopatch.delay=30 opatch/LsInventory "D:\oracle\pr
    oduct\10.1.0\db_1\oui" "d:\oracle\product\10.1.0\db_1" opatch.pl 1.0.0.0.48 FALS
    E"
    Retrieving inventory.
    There is no Interim Patch
    D:\oracle\product\10.1.0\db_1\OPatch\opatch.pl version: 1.0.0.0.48
    Copyright (c) 2001,2002,2003 Oracle Corporation. All Rights Reserved.
    OPatch succeeded.
    So thought is my opatch the culprit? Its version as seen in above dump is - 1.0.0.0.48, so is that causing any problem? And if yes, then how to get it resolved?
    FYI: OS - Win2003, DB - 10.1.0.2.0
    Can any one help in this?
    Thanks!
    Av.

  • How can I want run the reports on AD, if I have no access to AD server?

    I am not an AD administrator and I do not have permissions to AD server. But I have admin permissions to a site in AD and using RSAT, can administer the site. How can I want run the reports listed below? AD is on Windows 2008R2 server.
    All Administrator logons
    Logon statistics
    Logons during non-business hours
    Multiple logon failures
    Password resets (other than Security Administrator)
    Successful logon after several failures
    User behavior anomalies
    Logons of already logged-on users
    All Logons Over Weekend
    Audit Policy Changed
    Computer Accounts Changed

    Hello,
    Some of your reports can be done using RSAT with Active Directory Powershell module. Some of them including
    Computer Accounts Changed needs auditing to be enabled for directory object changes. These are not predefined reports which you can simply run my friend. Can you please be more specific?
    Mahdi Tehrani   |  
      |  
    www.mahditehrani.ir
    Please click on Propose As Answer or to mark this post as
    and helpful for other people.
    This posting is provided AS-IS with no warranties, and confers no rights.
    How to query members of 'Local Administrators' group in all computers?

Maybe you are looking for