Installation Problelm in server Mashine "Oracle Database 9i 2"

i have server 2ooo machine i want to install oracle database 9i 2 in this server machine. but when i installed oracle database 9i 2 display a error recomended for 10g or higher.
anyone can help me how can i install?

Windows 8Never heard of that. I thought Windows 7 is the newest version?
I need installation Guide of Oracle Database 9.2.0.1 for "Windows 8" server Machine.You might ask your question in the installation forum Database Installation

Similar Messages

  • Insert and update tables from SQL server to oracle database tables

    Hi,
    I am having problem while update data from sql server to oracle database tables.
    I am doing one way insert +updates that is from SQL Server tables ==> Oracle database tables
    I am using tools Sql server Integration service. I can insert data from sql server to oracle but update can't. Please help me how can I update + insert from sql server to oracle database tables easily.
    Thanks in advance.

    Hi,
    What about using Oracle SQL Developer for migration
    http://www.oracle.com/technetwork/database/migration/sqlserver-095136.html
    HTH

  • ECC 6.0 installation on HPUX Cluster and oracle database

    Hi,
    I need to install ECC6.0 installation on HPUX Cluster and oracle database. Can anybody plz suggest me or send any document to me ..
    Thanks,
    venkat.

    Hi Venkat,
    Please download installation guide from below link:-
    https://websmp105.sap-ag.de/instguides
    Regards,
    Anil

  • Install Oracle HTTP Server to Oracle Database XE

    Successfully managed to install Oracle Database XE to Windows 2000 (after temporarily dropping TNSNAMES and TNS_ADMIN variables). I want to learn how to use Application Express (formerly HTML DB) and it would be a pain/take ages to get the enterprise DBA's to install it onto a supported networked instance. I have installed HTML DB into Oracle XE but the post installation instructions require that Oracle HTTP Server is installed. How do you get Oracle HTTP Server installed into Oracle XE? Oracle Universal Installer does not recognise Oracle XE as an Oracle Home. How do you use Oracle Universal Installer on Oracle XE? or how do you download Oracle HTTP Server with InstallShield? Seems strange that Oracle XE does not integrate with other toolset installations.
    Thanks

    ALTER SESSION SET CURRENT_SCHEMA = FLOWS_020000;
    exec FLOWS_020000.wwv_flow_upgrade.switch_schemas ('FLOWS_020000','FLOWS_020100');commit;I would give it a try, it's hard to make it worse ;).
    Oracle XE / Apex is almost the same.
    Some of the differences are:
    - SSO authentication is not supported out of the box (although there are workarounds)
    - You can assign only a single database schema to a workspace
    - There are no developer accounts in the workspaces
    Basically, both version are pretty much the same. You can export / import applications both ways.
    I cannot see what you mean by missing templates. They are all there (although not in the filesystem but stored in the database via XMLDB).
    You can reach the documentation from the homepage of XE and also from Start > Programs > Oracle Express Edition
    ~Dietmar.

  • How to choose a right server for Oracle Database!

    Hi all,
    Is there any formular that allows me to find the appropriate server configuration for Oracle database 11g?
    Please help!
    Thank you all.
    Dan.
    Edited by: Dan on 01:45 06-01-2013

    Simply put ... no.
    Determining the correct server is a dance between hardware vendors (one point of input to be treated with general distrust), internal expertise and experience working with similar systems, and most importantly understanding the behaviour of what you are building.
    Here are some sample questions to start the ball rolling.
    1. What operating system expertise does your organization have?
    2. What operating system expertise is readily available in the community from which you hire applicants?
    3. What type of application?
    4. What are up-time expectations?
    5. Requirements for high availability?
    6. Requirements for time to perform a full recovery?
    7. Requirements for security?
    8. Storage footprint (dictates internal storage versus SAN, NAS, or ZFS)
    9. Anticipated growth (3-7 years)
    Everyone wants to sell you CPU clock-ticks, more RAM, more IOPS, etc. But the first thing you need to understand is the capabilities you require that are generic: Required of any solution. Only when you have a clear understanding of these factors are you ready to discuss whether the solution is a pizza box or an ODA ... an Exadata or an IBM System Z.
    Far too often I find people purchasing RAM they don't need with CPU speeds that exceed the ability of their network infrastructure to move the data so pay special attention when you are ready to make your purchase to engineered systems like the ODA.

  • Migration from SQL Server to Oracle database

    I have got 2 questions:
    1. We are planning to convert our OLTP sql server databases to oracle databases. I tried using SQL Developer to migrate a small sql server database to oracle database(size 5Gb). It was fine. when I tried to migrate another database(size 90G), it is taking too long. The problem with sql developer is I cannot choose and pick tables. out of 250 tables, I need to migrate abt 80 tables(size will be abt 50G). can anybody share their experiences, if any, in converting medium size sql server databases to oracle databases? any others options??
    2. I am planning to convert sql server ddl to oracle ddl. I am testing bcp out and use sql loader to import the data. Right now, I am manually creating oracle tables from sql server tables. I am using http://download.oracle.com/docs/cd/E11882_01/gateways.112/e12069/apa.htm#BABCIIDI to convert the code. Are there any other better ways to convert sql server DDL to Oracle DDL?
    Thanks in advance

    DDLs should be converted manually. Oracle is not SQL-Server.
    If you for example have the partitioning option, you should consider using partitioning and local indexes where possible. Not all tables need to be hash tables. Do you defer segment creation or not? What is the type of tablespace? Do you set percentages for free and used to manage when the data block is on the free list and how much is reserved in the data block for updating rows in that block?
    There are numerous considerations to make in terms of the physical database design.
    Using BCP and SQL*Loader sound good. SQL*Loader is fast and scalable - am using it to load up to 3.6 million rows every 60 seconds. Direct and parallel loads provide the best performance in this regard (assuming that the underlying table structure and usage supports this approach).

  • Periodic Importing of data from SQL Server into Oracle Database

    I would like to know how I can use the SQL Developer tool to import data from a SQL Server database across the internet into an Oracle Database on a periodic basis? I understand there is a Migration Workbench, but it seems to be only a one off activity.
    What I would really like is to be able to import data for example, very 30 minutes from multiple tables/views in a SQL Server Database into an Oracle Database (overwriting or modifying existing same data) without the need for Heterogeneous Connectivity, as my Oracle Database is not my LAN.
    Thank you for your kind ideas and suggestions.

    To be honest the best way to do it is DG4ODBC or DG4MSQL. All other solutions need manual interaction.
    The gateways DG4ODBC and DG4MSQL are independant from the Oracle database and also from the SQL Server location. In a worst case scenario you have an Oracle database on machine A, the gateway on machine B and the SQL Server on machine C.
    Gateways were built to exactly do what you want. As you have access to the Oracle database the only part you need to define within the Oracle database is a db link. If you specify the full tns connect identifier there is even no need to edit the tnsnames.ora file.
    Even if you excluded the gateway in your last sentence the best solution would be the gateway.
    Another option you can use is the SQL Server linked server mechanism. It allows you to link another server using OLEDB driver. In your case you can then link the Oracle db into your SQL Server and then insert/update/delete and select Oracle tables from the SQL Server. Using now a trigger will replicate the data immediately to the Oracle db.

  • Help on Oracle Golden Gate [SQL Server to Oracle Database]

    Hi,
    I am planning to use Oracle Golden Gate to replicate data from SQl Server 2008 to Oracle database. I had below queries which I wanted to get clarity on before making a decision. It would be very helpful if anyone can clarify this
    - Can I set-up OGG to synchronize only a subset of tables within a schema ? (for ex: 10 tables out of 50 tables in a schema)
    - Once the synchronization is set-up after the Initial Load, can the synchronization be paused (for few days) and then resumed again seamlessly ?
    Any help/input would be greatly appreciated.
    Regards
    Rajashekar

    - Can I set-up OGG to synchronize only a subset of tables within a schema ? (for ex: 10 tables out of 50 tables in a schema)
    Yes, the TABLE option in the extract needs to specify the table name (not a wildcard ( * )).  The replecat needs to be done the same way.
    Example:
    --Extract--
    TABLE <SCHEMA>.<TABLE_NAME>
    --Replicat--
    MAP <SCHEMA>.<TABLE_NAME>, TARGET <SCHEMA>.<TABLE_NAME>
    - Once the synchronization is set-up after the Initial Load, can the synchronization be paused (for few days) and then resumed again seamlessly ?
    Once the initial load is done, you can turn off the replicat for a few days.  Only thing is that you need to make sure you have space for the trail files that will be generated and access to any backups/archive logs that you may need later.

  • How to merge data from SQL server to Oracle Database

    Dear Expert,
    I am having problem with SQL server with Oracle.
    Problem: I want to merge table records from SQL server to Oracle Table. Which License free tool I can use to achive the goals.
    If I able to make a free DB link from Oracle to SQL server , then we can select table and will be able to update.
    Right now I have made a DB link from SQL server to Oracle, Using that I can see the records from oracle database but I can't update them.
    Thanks,
    Sher

    Hi,
    What about using Oracle SQL Developer for migration
    http://www.oracle.com/technetwork/database/migration/sqlserver-095136.html
    HTH

  • Using VPN to connect to Windows XP server running Oracle Database

    Trying to connect to a hotel PMS system (Micros Opera) through my mac. The system runs through internet explorer on PC and is based on an Oracle Database. The DB stores both the data and application. I have it set up and working via VPN in Parallels, but still have not been able to make it work on the mac side. All I needed to do in Parallels was add the VPN connection, direct IE to http://operettaserver and everything worked perfectly.
    I have a feeling it has something to do either with browser compatibility or ports. On windows, it runs best in IE, but will load in Firefox. Can't get it to load in Firefox or Safari on the Mac side (even when I plug the computer directly into the network). The VPN connection seems to be OK on the Mac -- when i type the local IP it redirects to the server, but the login page does not open. I can, however, access shared folders.
    Does anyone have any ideas what could be the issue? Any suggestions would be greatly appreciated.
    Thanks!
    JK

    It looks like a file transfer protocol issue here. Which is the OS on the server? Is it Mac or Windows.
    You can try this Apple Support article http://docs.info.apple.com/article.html?path=ServerAdmin/10.5/en/c1ns5.html

  • Changes to be made in EP server during Oracle database migration

    Hi,
    Currently we have a scenario where both our Oracle database 10.2 and NW 7.0 server are on same system which has got the hardware configuration as 32 bit 2003 windows machine. Due to memory constraints DB team is planning to migrate the database in to another system which is of 64 bit unix OS.
    Now before they migrate the Oracle database from current system to new system i wanted to know on what all parameters and changes have to carried out from NW/ EP end so that after the database is moved EP points to the same Oracle database in the new system and runs smoothly.
    Thanks in Advance,
    Regards,
    Vipin.

    > Currently we have a scenario where both our Oracle database 10.2 and NW 7.0 server are on same system which has got the hardware configuration as 32 bit 2003 windows machine. Due to memory constraints DB team is planning to migrate the database in to another system which is of 64 bit unix OS.
    This is a heterogeneous migration (you change the operating system) - which requires a certified migration consultant to do that task. If you do it on your own you will loose support for the target system (see http://service.sap.com/osdbmigration)
    > Now before they migrate the Oracle database from current system to new system i wanted to know on what all parameters and changes have to carried out from NW/ EP end so that after the database is moved EP points to the same Oracle database in the new system and runs smoothly.
    You will have to use the Java export/import method, not copying database files over.
    Check the official system copy guides.
    Markus

  • Loading data from SQL server to Oracle database

    i want to create one table in oracle db from table in sql server. Table is huge it got 97,456,789 records.
    I created db link (HS) in oracle database which is pointing to sql server. i can select that table from oracle thru db link.
    select * from "dbo"."t1@dblink;
    i fired below create table.
    create table t2 nologging parallel (degree=3) as select * from "dbo"."t1@dblink;
    and its taking long time.... but its running...
    is there any alternate method to do this and and populate table in oracle db faster.
    Please advise. thanks.

    vhiware wrote:
    create table t2 nologging parallel (degree=3) as select * from "dbo"."t1@dblink;
    and its taking long time.... but its running...I doubt that parallel processing will be used as this is unique to Oracle (using rowid ranges typically) and not SQL-Server.
    is there any alternate method to do this and and populate table in oracle db faster.Part of the performance overhead is pulling that data from SQL-Server to Oracle across the network link between them. This can be sped up by compressing the data first - and then transferring that across the network.
    For example: using +bcp+ to export the data on the SQL-Server box to a CSV file, compress/zip the file, scp/sftp the file to Oracle, and then unzipping it there. Parallel and direct load processing can now be done using SQL*Loader to load the CSV into Oracle.
    If this is a Linux/Unix base system, then the unzip/decompress process can be run in parallel with the SQL*Loader process by creating a pipe between the two - where the unzip process writes uncompressed data into the pipe and SQL*Loader reads and loads data as it becomes available via the pipe.
    Alternatively, you can do you own PQ processing. Let's say the data is date ranged. You can create a procedure on Oracle that looks something like this:
    {code}
    create or replace procedure CopyDay( day date ) is
    begin
    insert /*+ append */ into local_tab select * from remote_tab@remotedb where col_day = day;
    -- add logging info, commit, etc.
    end;
    {code}
    You can now start 10 or more of these for different days and run it in the background using DBMS_JOB.

  • Cisco LMS 4.1 Installation on Windows Server 2008 R2, Databases not created

    Hi There,
    As always, I am trying to install LMS 4.1 on windows server 2008 R2 and after the installation and login to the LMS I find the following:
    DCRServer is down or may not be completely up. Check if the DCRServer process is running.
    And after some troubleshooting I found that the LMS is not creating the CMF database and the other databases. Attached is the installation log file, if someone could help me with it would be appreciated. Please note the following:
    1. I have downloaded the installation file from Cisco website twice, so I do not think it is the file that is corrupted, also it is only evaluation license.
    2. I have met all the prerequisites and requirement as in the documentation guides, but maybe there is something still wrong.
    Thanks,

    Also Here is more info output:
    C:\Program Files (x86)\CSCOpx>pdshow -brief
      Process               State                                     Pid
      Tomcat                Program started - No mgt msgs received    1572
      TomcatMonitor         Running normally                          2236
      Apache                Program started - No mgt msgs received    2436
      DataPurge             Administrator has shut down this server   0
      DCRServer             Failed to run                             0
      CMFOGSServer          Administrator has shut down this server   0
      EssentialsDM          Administrator has shut down this server   0
      ConfigMgmtServer      Never started                             0
      ConfigUtilityService  Never started                             0
      CTMJrmServer          Administrator has shut down this server   0
      ChangeAudit           Never started                             0
      SyslogAnalyzer        Program started - No mgt msgs received    2976
      ICServer              Running normally                          5096
      EnergyWise            Never started                             0
      PMCOGSServer          Administrator has shut down this server   0
      IPMOGSServer          Administrator has shut down this server   0
      IPMProcess            Never started                             0
      TISServer             Program started - No mgt msgs received    2544
      DFMOGSServer          Program started - No mgt msgs received    876
      InventoryCollector    Running normally                          3052
      Interactor            Program started - No mgt msgs received    5136
      InventoryCollector1   Program started - No mgt msgs received    5144
      Interactor1           Program started - No mgt msgs received    5308
      PTMServer             Program started - No mgt msgs received    5320
      UPMProcess            Never started                             0
      TISDiscoveryJobCreate Administrator has shut down this server   0
      SyslogCollector       Running normally                          5340
      Proxy                 Program started - No mgt msgs received    5348
      PMServer              Running normally                          5360
      NameServer            Program started - No mgt msgs received    5680
      NameServiceMonitor    Running normally                          5876
      LicenseServer         Program started - No mgt msgs received    5884
      FHPurgeTask           Never started                             0
      EventFramework        Program started - No mgt msgs received    5892
      EPMServer             Program started - No mgt msgs received    5904
      FHServer              Administrator has shut down this server   0
      NOSServer             Program started - No mgt msgs received    5580
      diskWatcher           Running normally                          5640
      DFMMultiProcLogger    Program started - No mgt msgs received    5864
      DFMLogServer          Program started - No mgt msgs received    4896
      DFMCTMStartup         Administrator has shut down this server   0
      DfmBroker             Running normally                          6104
      DfmServer             Running normally                          6416
      DfmServer1            Running normally                          6424
      DCRDevicePoll         Never started                             0
      CSRegistryServer      Running normally                          6432
      CSDiscovery           Never started                             0
      AdapterServer1        Program started - No mgt msgs received    6440
      AdapterServer         Program started - No mgt msgs received    6448
    C:\Program Files (x86)\CSCOpx>pdshow DCRServer
            Process= DCRServer
            State  = Failed to run
            Pid    = 0
            RC     = -3
            Signo  = 1073741821
            Start  = N/A
            Stop   = 07/02/2012 17:39:06
            Core   = Not applicable
            Info   = Application failed or was registered incorrectly.
    C:\Program Files (x86)\CSCOpx>net stop crmdmgtd
    The Cisco Prime Daemon Manager service is stopping..........................................
    The Cisco Prime Daemon Manager service was stopped successfully.
    C:\Program Files (x86)\CSCOpx>bin\perl.exe objects\db\conf\configureDb.pl action=validate dsn=cmf
    INFO: C:\PROGRA~2\CSCOpx/objects/db/conf/ConfigureDB.LOCK locked for the operation...
    ERROR: [StandardDbUpgrade] : Database cmf is not installed.
    INFO: C:\PROGRA~2\CSCOpx/objects/db/conf/ConfigureDB.LOCK released for the future operations...
    C:\Program Files (x86)\CSCOpx>bin\perl.exe bin\dbpasswd.pl all
    ERROR: There is no database available to change password.
    C:\Program Files (x86)\CSCOpx>bin\perl.exe bin\dbRestoreOrig.pl dsn=cmf dmprefix=Cmf npwd=pwd
    'cmf' is not a valid data source for the product.

  • Periodic Report genration in Weblogic server using Oracle database and EJB3

    Hello All,
    I have to generate reports periodically, when periodicity for report generation is inserted into database(Oracle 11g in my case) using EJB3 entity bean from application server(Weblogic 11g). Immediately on insertion i have to start generation reports in csv format and save these files into the application server directory. My application server and Database are running on different machine.

    Okay, good luck with that. When you have an actual programming problem, feel free to come back and ask for help.

  • OMWB schema prefix (MS SQL Server to Oracle database migration)

    I made automatical migration + some manual changes (pipelined functions) to migrate MS SQL 2000 database to Oracle 9i. Still one issue remains which requires lot of manual conversion : Names of the tables in views after automatic migration doesn't contain schema prefix and it doesn't compile on destination database.
    My question is: Is there any way to add schema prefix to table names in views automatically during migration process ?

    Two things here.
    The omwb will login to Oracle and create the views in the schema where they will be stored, hence not needing the schema appended.
    If the views are on other schemas than the one being installed into, then yes, there may be some manual edits to do to the table names in the views. This is not configurable today.

Maybe you are looking for

  • How to use Facebook in appile tv

    How to use iphon 4s(Facebook) in appile tc

  • How do I keep the history from coming back later after I delete it?

    Even though I select delete all history each time I use Firefox, I notice that my history shows back up again after a few days. It even shows a week or more of previous history sometimes. There is another user for my computer. Are they requesting tha

  • Can I save my pdcast subscriptions?

    Is it possible to save my subscriptions to podcasts? I subscribe to maybe 30 podcasts and it is very inconvenient to change computers or reinstall iTunes, and have to go to the store and find all of those podcasts again, and subscribe to them individ

  • Saving from bridge and converting from raw to jpeg

    why can I not convert from raw to jpeg in bridge (camera raw) and save to a location different from the  original

  • Still can't use cover flow

    okay, i still can't use cover flow. i got the itunes 7 update, 7.0.1, but it still comes up with "can't browse album covers on this computer." is it just because i use windows 2000, or do i need to change something on my computer?