Oracle XE Replication Options

I have an Oracle XE database which I would like to replicate on a secondary server for failover purposes. I have done some research into this and it appears that Oracle basic materialized view replication is the only option available to me.
Are there other alternatives out there that are suitable for creating an Oracle XE failover environment?
Werner

Yes you need to have Oracle 10g Enterprise edition for using other mechanisms like streams for replication.

Similar Messages

  • EBS R12.1 with Oracle Advance Security option  - is it certified ?

    Hi,
    Environment details are below:
    EBS R12.1.1
    Oracle database version is 10g R2 (10.2.0.4) .
    OS is Solaris 10
    We are looking for an option of implementing Oracle advanced security option (ASO) .But want to know if its certified with EBS R12.1.1 / 10g R2 database.
    I checked few links but I'm not clear if its certified.
    http://blogs.oracle.com/stevenChan/2008/07/10gr2_10204_certified_with_apps_11i.html
    from the above link i understand its certified on 11i (11.5.10 CU2 only)
    <<Advanced Security Option / Advanced Networking Option (ASO / ANO) (11.5.10.CU2 only)>>
    Dees anyone know about this certification. If you have any pointers please let me know.
    Thanks for your time.
    Note : ASO is certified with 11g database. 11gR1 but I'm looking for 10g R2 (10.2.0.4)
    http://blogs.oracle.com/mt/mt-search.cgi?blog_id=101&tag=EBS%2012&limit=20
    Cheers,
    sbs
    Edited by: sbs on Oct 14, 2009 5:23 PM

    Hi,
    Please see this link.
    10gR2 10.2.0.4 Database Certified with Apps 12
    http://blogs.oracle.com/stevenChan/2008/08/10gr2_10204_database_certified_with_apps_12.html
    Regards,
    Hussein

  • RE: (forte-users) Changing replication options in Fscript? -Tric k

    There was one attribute of a service object you couldn't change in fscript..
    I think it was whether the service was replicated at all or not (not the
    same as setting rep count to 1!).
    As Clint would say, "improvise.."
    We exported the project containing the service object and snipped out the
    part pertaining to the service object in to a little export file.
    Then in an fscript script you can branch/checkout the service object and
    import the snipped out export file to change the replicated yes/no flag.
    Then do whatever other fscript commands make sense.. We tended to leave the
    system baseline with the "true" replication flags and let developers run
    this little script (only branching the services) to de-replicate all the
    replicated services prior to trying to run from their workspace, etc.
    Worked like a charm.
    -Greg
    -----Original Message-----
    From: Taras Katkov
    To: [email protected]
    Sent: 12/1/99 2:57 PM
    Subject: Re: (forte-users) Changing replication options in Fscript?
    "setappcompcompiled", "setPARTrepcount" can be used in fscript during
    application build.
    I mean PERIOD!
    Taras Katkov
    f.e.
    FindAppComp AppNAme_PartXX
    SetAppCompCompiled MyNode 1
    SetPartRepCount MyNode YY
    SetPartArgs MyNode \"Whatever\"
    SetPartThreadPkg MyNode DCE
    commit
    [email protected] wrote:
    >
    Yes through escript one can achieve changing the properties but onecannot
    do it when one is partitioning the app where the router gets createdand
    assigned ( which is fscript) and the single threadedness of thepartition
    takes effect ( for loadbalancing ) except from the partitioningworkshop
    (GUI) itself.
    -----Original Message-----
    From: [email protected] [mailto:[email protected]]
    Sent: Wednesday, December 01, 1999 3:39 PM
    To: [email protected]; [email protected];
    [email protected]
    Subject: RE: (forte-users) Changing replication options in Fscript?
    Yes you can do it, but you actually do it in EScript not FScript lookfor
    the following types of command "assignappcomp", "unassignappcomp",
    "setappcompcompiled", "setrepcount", "findagent", "findsubagent",
    "findparent" etc.. So start with your EScript manual.
    Happy scripting.
    -----Original Message-----
    From: [email protected] [mailto:[email protected]]
    Sent: Wednesday, December 01, 1999 1:36 PM
    To: [email protected]; [email protected]
    Subject: RE: (forte-users) Changing replication options in Fscript?
    no it is not. One can compiling properties but not replicationproperties
    through Fscript.
    -----Original Message-----
    From: [email protected] [mailto:[email protected]]
    Sent: Wednesday, December 01, 1999 3:24 PM
    To: [email protected]
    Subject: (forte-users) Changing replication options in Fscript?
    Before making a distribution, we modify replication options on some ofour
    service objects from within the Partition Workshop (to get rid of the
    router partition on some of our applications). Does anyone know ifit is
    possible to do this in Fscript? Thanks for your help.
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in anew
    email the word: 'Unsubscribe' to: [email protected]
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in anew
    email the word: 'Unsubscribe' to: [email protected]
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in anew
    email the word: 'Unsubscribe' to: [email protected]
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a
    new
    email the word: 'Unsubscribe' to: [email protected]

    You can set the the number of replicas through fscript BUT the service
    object in that partition has to be marked for LOADBALANCE. I didn't find a
    fscript command to do that (that was what mnasser was trying to tell you).
    But you can get around it by exporting the plan that has the service object
    and look for the string LoadBalance = FALSE, then change it to LoadBalance =
    TRUE. Import back the plan and you should be fine.
    Norocel Popa
    -----Original Message-----
    From: [email protected] [mailto:[email protected]]
    Sent: Wednesday, December 01, 1999 8:28 PM
    To: [email protected]; [email protected]
    Subject: RE: (forte-users) Changing replication options in Fscript? -
    Tric k
    There was one attribute of a service object you couldn't change in fscript..
    I think it was whether the service was replicated at all or not (not the
    same as setting rep count to 1!).
    As Clint would say, "improvise.."
    We exported the project containing the service object and snipped out the
    part pertaining to the service object in to a little export file.
    Then in an fscript script you can branch/checkout the service object and
    import the snipped out export file to change the replicated yes/no flag.
    Then do whatever other fscript commands make sense.. We tended to leave the
    system baseline with the "true" replication flags and let developers run
    this little script (only branching the services) to de-replicate all the
    replicated services prior to trying to run from their workspace, etc.
    Worked like a charm.
    -Greg
    -----Original Message-----
    From: Taras Katkov
    To: [email protected]
    Sent: 12/1/99 2:57 PM
    Subject: Re: (forte-users) Changing replication options in Fscript?
    "setappcompcompiled", "setPARTrepcount" can be used in fscript during
    application build.
    I mean PERIOD!
    Taras Katkov
    f.e.
    FindAppComp AppNAme_PartXX
    SetAppCompCompiled MyNode 1
    SetPartRepCount MyNode YY
    SetPartArgs MyNode \"Whatever\"
    SetPartThreadPkg MyNode DCE
    commit
    [email protected] wrote:
    >
    Yes through escript one can achieve changing the properties but onecannot
    do it when one is partitioning the app where the router gets createdand
    assigned ( which is fscript) and the single threadedness of thepartition
    takes effect ( for loadbalancing ) except from the partitioningworkshop
    (GUI) itself.
    -----Original Message-----
    From: [email protected] [mailto:[email protected]]
    Sent: Wednesday, December 01, 1999 3:39 PM
    To: [email protected]; [email protected];
    [email protected]
    Subject: RE: (forte-users) Changing replication options in Fscript?
    Yes you can do it, but you actually do it in EScript not FScript lookfor
    the following types of command "assignappcomp", "unassignappcomp",
    "setappcompcompiled", "setrepcount", "findagent", "findsubagent",
    "findparent" etc.. So start with your EScript manual.
    Happy scripting.
    -----Original Message-----
    From: [email protected] [mailto:[email protected]]
    Sent: Wednesday, December 01, 1999 1:36 PM
    To: [email protected]; [email protected]
    Subject: RE: (forte-users) Changing replication options in Fscript?
    no it is not. One can compiling properties but not replicationproperties
    through Fscript.
    -----Original Message-----
    From: [email protected] [mailto:[email protected]]
    Sent: Wednesday, December 01, 1999 3:24 PM
    To: [email protected]
    Subject: (forte-users) Changing replication options in Fscript?
    Before making a distribution, we modify replication options on some ofour
    service objects from within the Partition Workshop (to get rid of the
    router partition on some of our applications). Does anyone know ifit is
    possible to do this in Fscript? Thanks for your help.
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in anew
    email the word: 'Unsubscribe' to: [email protected]
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in anew
    email the word: 'Unsubscribe' to: [email protected]
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in anew
    email the word: 'Unsubscribe' to: [email protected]
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a
    new
    email the word: 'Unsubscribe' to: [email protected]
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: [email protected]

  • Oracle Advanced Networking Option with Linux

    I want to set up a linux client that works with an Solaris based Oracle 8i EE server using an encrypted connection.
    I have successfully done this with NT clients. However the Linux client responds an "ORA-12657: No algorithms installed"
    Isn't Oracles Advanced Networking Option available for Linux?
    If it is, how do I install it?
    Martin
    null

    Check to see if ANO is linked in with SQL*Plus by running the following:
    cd to oracle_home/bin
    adapters sqlplus
    If after running the adapters command and ANO does not show as being linked in,
    perform the following:
    1. Change directorys to oracle home/sqlplus/lib
    2. Run the following unix command to relink SQL*Plus:
    make -F ins_sqlplus.mk install
    3. Change to oracle home/bin directory.
    4. Re-run "adapters sqlplus" to verify that ANO is now linked in.

  • Installed Oracle 9.2 Administrator - No Oracle ODBC Driver Option Found

    If anyone can help me, I would greatly appreciate it. I just recently de-installed Oracle 8i on my laptop and installed Oracle 9.2. Once I finished installing 9.2, I went to set up a data source and realized that there is no Oracle ODBC Driver option available when setting up my datasource. In addition, I am unable to configure or delete any of my existing data sources that were created with the Oracle ODBC Driver.
    I have de-installed and re-installed 9.2 Administrator at least four times now. In between the installs, I have removed the old Oracle directories, services, entries in my registry and PATH. The result is still the same, not Oracle ODBC Driver option available after the installation. I get no errors when installing and the ODBC Drivers indicate that they have been installed. I have even tried re-installing the drivers and still get nothing.
    Please help.
    DGolay

    Hi
    Strange behaviour.
    Anyway, you can find the drivers here :
    http://www.oracle.com/technology/software/tech/windows/odbc/index.html

  • To Report Error message in oracle website search option

    I have encountered an error message in oracle website search option. There was some compilation error in their JSP pages I did not know how to inform the Otn team. Can any one please guide me.
    regards,
    sagar

    You can use the below information for raising an Alert for adapters.
    Specific Error Information from the Adapter Engine:
    Container Element
    ABAP Dictionary Data Type
    Meaning
    SXMS_TO_ADAPTER_TYPE
    CHAR70
    Adapter type
    SXMS_TO_ADAPTER_ERRTXT
    CHAR70
    Error text from the Adapter Engine
    Refer the below link:
    http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm

  • Oracle streems replication issue

    Hi Gurus,
    Just thought of checking with you guys on one of the issue which i have got Oracle Streams replication between two database oradb1 and oradb2 is inconsistent .
    the data is inconsistent ... between the database.
    I am not sure abt this any expert advive will be highly apprciated.

    Hi,
    What version? How do you know it is inconsistent? Is it small enough to rebuild the target site from a backup of the primary?
    if it's small enough, you can delete the erroneous transactions from the apply queue in the target database. In 11.2.0.1 and above, there is also a DBMS_COMPARISON package for this type of thing, which will identify and fix the data if you choose. I think under huge volumes of data though, you'll have to fix it yourself.
    Also, inquiring minds want to know. Specifically, how did it get out of sync? We have found Streams to be quite robust (and cheaper than the $17K/CPU they want for GoldenGate) if you:
    * Properly test and document your configuration
    * Test failure/recovery scenarios for issues such as yours
    * Lather/rinse/repeat
    HTH,
    Steve

  • How to uninstall Oracle 11g Database Options?

    I've come across a problem. A company that developed an application, installed Oracle 11g EE.
    I guess they would use all default options. Some of them are licensed separately, and are not used. So I need to uninstall them.
    For example, I see that it is installed "Advanced Compression". I tried to uninstall it from the Universal Installer, but there isn't an option.

    Good news for my company.
    There has never been used "Advanced Compression" and for everything else we are licensed.
    NAME                                                     VERSION     DETECTED_USAGES CURRENTLY_USED LAST_USAGE_DATE
    Active Data Guard - Real-Time Query on Physical Standby  11.2.0.2.0                0 FALSE                         
    ADDM                                                     11.2.0.2.0                0 FALSE                         
    Advanced Replication                                     11.2.0.2.0                0 FALSE                         
    Application Express                                      11.2.0.2.0                0 FALSE                         
    Automatic SGA Tuning                                     11.2.0.2.0                0 FALSE                         
    Automatic Storage Management                             11.2.0.2.0                0 FALSE                         
    Automatic Workload Repository                            11.2.0.2.0                0 FALSE                         
    AWR Baseline                                             11.2.0.2.0                0 FALSE                         
    AWR Baseline Template                                    11.2.0.2.0                0 FALSE                         
    Backup BASIC Compression                                 11.2.0.2.0                0 FALSE                         
    Backup BZIP2 Compression                                 11.2.0.2.0                0 FALSE                         
    Backup Encryption                                        11.2.0.2.0                0 FALSE                         
    Backup HIGH Compression                                  11.2.0.2.0                0 FALSE                         
    Backup LOW Compression                                   11.2.0.2.0                0 FALSE                         
    Backup MEDIUM Compression                                11.2.0.2.0                0 FALSE                         
    Backup Rollforward                                       11.2.0.2.0                0 FALSE                         
    Backup ZLIB Compression                                  11.2.0.2.0                0 FALSE                         
    Baseline Adaptive Thresholds                             11.2.0.2.0                0 FALSE                         
    Baseline Static Computations                             11.2.0.2.0                0 FALSE                         
    Bigfile Tablespace                                       11.2.0.2.0                0 FALSE                         
    Block Media Recovery                                     11.2.0.2.0                0 FALSE                         
    Change Data Capture                                      11.2.0.2.0                0 FALSE                         
    Change-Aware Incremental Backup                          11.2.0.2.0                0 FALSE                         
    Character Semantics                                      11.2.0.2.0                0 FALSE                         
    Client Identifier                                        11.2.0.2.0                0 FALSE                         
    Clusterwide Global Transactions                          11.2.0.2.0                0 FALSE                         
    Compression Advisor                                      11.2.0.2.0                0 FALSE                         
    Crossedition Triggers                                    11.2.0.2.0                0 FALSE                         
    CSSCAN                                                   11.2.0.2.0                0 FALSE                         
    Data Guard                                               11.2.0.2.0                0 FALSE                         
    Data Mining                                              11.2.0.2.0                0 FALSE                         
    Data Recovery Advisor                                    11.2.0.2.0                0 FALSE                         
    Database Replay: Workload Capture                        11.2.0.2.0                0 FALSE                         
    Database Replay: Workload Replay                         11.2.0.2.0                0 FALSE                         
    Deferred Open Read Only                                  11.2.0.2.0                0 FALSE                         
    Direct NFS                                               11.2.0.2.0                0 FALSE                         
    Dynamic SGA                                              11.2.0.2.0                0 FALSE                         
    Editioning Views                                         11.2.0.2.0                0 FALSE                         
    Editions                                                 11.2.0.2.0                0 FALSE                         
    EM Database Control                                      11.2.0.2.0                0 FALSE                         
    Encrypted Tablespaces                                    11.2.0.2.0                0 FALSE                         
    Exadata                                                  11.2.0.2.0                0 FALSE                         
    Extensibility                                            11.2.0.2.0                0 FALSE                         
    File Mapping                                             11.2.0.2.0                0 FALSE                         
    Flashback Data Archive                                   11.2.0.2.0                0 FALSE                         
    Flashback Database                                       11.2.0.2.0                0 FALSE                         
    GoldenGate                                               11.2.0.2.0                0 FALSE                         
    HeapCompression                                          11.2.0.2.0                0 FALSE                         
    Hybrid Columnar Compression                              11.2.0.2.0                0 FALSE                         
    Instance Caging                                          11.2.0.2.0                0 FALSE                         
    Internode Parallel Execution                             11.2.0.2.0                0 FALSE                         
    Label Security                                           11.2.0.2.0                0 FALSE                         
    Locator                                                  11.2.0.2.0                0 FALSE                         
    Long-term Archival Backup                                11.2.0.2.0                0 FALSE                         
    Materialized Views (User)                                11.2.0.2.0                0 FALSE                         
    Messaging Gateway                                        11.2.0.2.0                0 FALSE                         
    Multi Section Backup                                     11.2.0.2.0                0 FALSE                         
    Multiple Block Sizes                                     11.2.0.2.0                0 FALSE                         
    Object                                                   11.2.0.2.0                0 FALSE                         
    OLAP - Analytic Workspaces                               11.2.0.2.0                0 FALSE                         
    OLAP - Cubes                                             11.2.0.2.0                0 FALSE                         
    Oracle Database Vault                                    11.2.0.2.0                0 FALSE                         
    Oracle Java Virtual Machine (user)                       11.2.0.2.0                0 FALSE                         
    Oracle Managed Files                                     11.2.0.2.0                0 FALSE                         
    Oracle Multimedia                                        11.2.0.2.0                0 FALSE                         
    Oracle Multimedia DICOM                                  11.2.0.2.0                0 FALSE                         
    Oracle Secure Backup                                     11.2.0.2.0                0 FALSE                         
    Oracle Text                                              11.2.0.2.0                0 FALSE                         
    Oracle Utility External Table                            11.2.0.2.0                0 FALSE                         
    Oracle Utility SQL Loader (Direct Path Load)             11.2.0.2.0                0 FALSE                         
    PL/SQL Native Compilation                                11.2.0.2.0                0 FALSE                         
    Read Only Tablespace                                     11.2.0.2.0                0 FALSE                         
    Real Application Clusters (RAC)                          11.2.0.2.0                0 FALSE                         
    Real-Time SQL Monitoring                                 11.2.0.2.0                0 FALSE                         
    Recovery Area                                            11.2.0.2.0                0 FALSE                         
    Recovery Manager (RMAN)                                  11.2.0.2.0                0 FALSE                         
    Resource Manager                                         11.2.0.2.0                0 FALSE                         
    Restore Point                                            11.2.0.2.0                0 FALSE                         
    Result Cache                                             11.2.0.2.0                0 FALSE                         
    RMAN - Disk Backup                                       11.2.0.2.0                0 FALSE                         
    RMAN - Tape Backup                                       11.2.0.2.0                0 FALSE                         
    Rules Manager                                            11.2.0.2.0                0 FALSE                         
    SecureFile Compression (system)                          11.2.0.2.0                0 FALSE                         
    SecureFile Compression (user)                            11.2.0.2.0                0 FALSE                         
    SecureFile Deduplication (system)                        11.2.0.2.0                0 FALSE                         
    SecureFile Deduplication (user)                          11.2.0.2.0                0 FALSE                         
    SecureFile Encryption (system)                           11.2.0.2.0                0 FALSE                         
    SecureFile Encryption (user)                             11.2.0.2.0                0 FALSE                         
    Semantics/RDF                                            11.2.0.2.0                0 FALSE                         
    Server Flash Cache                                       11.2.0.2.0                0 FALSE                         
    Services                                                 11.2.0.2.0                0 FALSE                         
    Shared Server                                            11.2.0.2.0                0 FALSE                         
    Spatial                                                  11.2.0.2.0                0 FALSE                         
    SQL Access Advisor                                       11.2.0.2.0                0 FALSE                         
    SQL Performance Analyzer                                 11.2.0.2.0                0 FALSE                         
    SQL Plan Management                                      11.2.0.2.0                0 FALSE                         
    SQL Profile                                              11.2.0.2.0                0 FALSE                         
    SQL Repair Advisor                                       11.2.0.2.0                0 FALSE                         
    SQL Tuning Set (system)                                  11.2.0.2.0                0 FALSE                         
    SQL Tuning Set (user)                                    11.2.0.2.0                0 FALSE                         
    SQL Workload Manager                                     11.2.0.2.0                0 FALSE                         
    Streams (system)                                         11.2.0.2.0                0 FALSE                         
    Streams (user)                                           11.2.0.2.0                0 FALSE                         
    Transparent Data Encryption                              11.2.0.2.0                0 FALSE                         
    Transparent Gateway                                      11.2.0.2.0                0 FALSE                         
    Transportable Tablespace                                 11.2.0.2.0                0 FALSE                         
    Tune MView                                               11.2.0.2.0                0 FALSE                         
    Undo Advisor                                             11.2.0.2.0                0 FALSE                         
    Very Large Memory                                        11.2.0.2.0                0 FALSE                         
    Workspace Manager                                        11.2.0.2.0                0 FALSE                         
    XDB                                                      11.2.0.2.0                0 FALSE                         
    XStream In                                               11.2.0.2.0                0 FALSE                         
    XStream Out                                              11.2.0.2.0                0 FALSE                         
    XStream Streams                                          11.2.0.2.0                0 FALSE                         
    ASO native encryption and checksumming                   11.2.0.2.0                1 FALSE          20/10/12       
    Segment Advisor (user)                                   11.2.0.2.0                1 FALSE          08/03/13       
    SQL Tuning Advisor                                       11.2.0.2.0                2 FALSE          09/02/13       
    AWR Report                                               11.2.0.2.0                3 FALSE          09/02/13       
    Oracle Utility Datapump (Import)                         11.2.0.2.0                3 FALSE          26/05/12       
    EM Performance Page                                      11.2.0.2.0                5 FALSE          20/10/12       
    SQL Monitoring and Tuning pages                          11.2.0.2.0                5 FALSE          20/10/12       
    Job Scheduler                                            11.2.0.2.0                6 TRUE           13/04/13       
    Segment Shrink                                           11.2.0.2.0                6 TRUE           13/04/13       
    EM Grid Control                                          11.2.0.2.0               27 FALSE          15/03/13       
    Automatic SQL Execution Memory                           11.2.0.2.0               35 TRUE           13/04/13       
    MTTR Advisor                                             11.2.0.2.0               41 TRUE           13/04/13       
    Parallel SQL DDL Execution                               11.2.0.2.0               56 TRUE           13/04/13       
    Parallel SQL DML Execution                               11.2.0.2.0               56 TRUE           13/04/13       
    Parallel SQL Query Execution                             11.2.0.2.0               61 TRUE           13/04/13       
    Oracle Utility Datapump (Export)                         11.2.0.2.0               93 TRUE           13/04/13       
    Oracle Utility Metadata API                              11.2.0.2.0               93 TRUE           13/04/13       
    Automatic Segment Space Management (user)                11.2.0.2.0               95 TRUE           13/04/13       
    Automatic SQL Tuning Advisor                             11.2.0.2.0               95 TRUE           13/04/13       
    LOB                                                      11.2.0.2.0               95 TRUE           13/04/13       
    Partitioning (user)                                      11.2.0.2.0               95 TRUE           13/04/13       
    Audit Options                                            11.2.0.2.0               96 TRUE           13/04/13       
    Automatic Maintenance - Optimizer Statistics Gathering   11.2.0.2.0               96 TRUE           13/04/13       
    Automatic Maintenance - Space Advisor                    11.2.0.2.0               96 TRUE           13/04/13       
    Automatic Maintenance - SQL Tuning Advisor               11.2.0.2.0               96 TRUE           13/04/13       
    Automatic Memory Tuning                                  11.2.0.2.0               96 TRUE           13/04/13       
    Automatic Segment Space Management (system)              11.2.0.2.0               96 TRUE           13/04/13       
    Automatic Undo Management                                11.2.0.2.0               96 TRUE           13/04/13       
    Character Set                                            11.2.0.2.0               96 TRUE           13/04/13       
    Deferred Segment Creation                                11.2.0.2.0               96 TRUE           13/04/13       
    Locally Managed Tablespaces (system)                     11.2.0.2.0               96 TRUE           13/04/13       
    Locally Managed Tablespaces (user)                       11.2.0.2.0               96 TRUE           13/04/13       
    Logfile Multiplexing                                     11.2.0.2.0               96 TRUE           13/04/13       
    Oracle Java Virtual Machine (system)                     11.2.0.2.0               96 TRUE           13/04/13       
    Partitioning (system)                                    11.2.0.2.0               96 TRUE           13/04/13       
    SecureFiles (system)                                     11.2.0.2.0               96 TRUE           13/04/13       
    SecureFiles (user)                                       11.2.0.2.0               96 TRUE           13/04/13       
    Server Parameter File                                    11.2.0.2.0               96 TRUE           13/04/13       
    Virtual Private Database (VPD)                           11.2.0.2.0               96 TRUE           13/04/13 thanks again

  • Oracle Stream Replication 10G

    Hi.
    We are planing to use 10G stream replication for our production enviorment. But we are concenred over few things before we move ahead with option. Our prior experience with 9i stream replication was not that good.
    9i does'nt functionality to do some advance maintenance task that could required on production enviorment. We are hoping 10G would be better option to go with streams.
    However, following are few questions that we have regarding this product. Request your valuable inputs on Oracle 10G streams replication.
    -->How effective this tool is compared to prior version 9i.
    -->How stable Streams are with 10G? Are still there any know critical issues with stream replication 10G for e.g bugs or patches that are under review e.g?
    -->For replication of production enviorment, would it be an ideal choice compared to third party vendor like golden Gate or shareplex.
    You reponse would be greatly appreciated.
    Thnks
    Ratheesh

    Hi Rateesh,
    -->How effective this tool is compared to prior version 9i.Very good. I use Streams in many production environments, even for bidirectional replication. Streams is very stable in 10g.
    For replication of production enviorment, would it be an ideal choice compared to third party vendor like golden Gate or shareplex.It depends on several factors. It's better than GG and Shareplex by far (IMHO).
    Madhu Tumma has some great Streams notes on this in his book "Oracle Streams":
    http://www.rampant-books.com/book_2004_2_streams.htm
    Hope this helps. . . .
    Donald K. Burleson
    Oracle Press author

  • MYSQL 55 to Oracle 11gr1 replication(oneway) - can not replicate

    I have setup golden gate replication between mysql 55 and oracle 11gr1. While trying to setup the initial load, I do'nt see any data push to oracle from mysql.
    What could be wrong in my setup.? has anyone tried this kind of setup? i see the the report for replicat and it says data is not replicated. while extract shows that 4 rows from table are taken for insert.

    Hi Stev
    I am trying to do the initial load process
    On source (MYSQL 55)
    database (ggtest and table test)
    table test has
    TEST(COL1 INT)
    manager is running on default port 7809
    manager parameter file is defined with (PORT 7809)
    There is initial load extract (EINI01) -->
    ADD EXTRACT EINI01
    param file
    EXTRACT EINI01
    SOURCEDB [email protected], USERID ggsdev, PASSWORD ggsdev
    RMTHOST 192.168.75.116, MGRPORT 7809
    RMPTTASK REPLICAT, GROUP RINI01
    TABLE ggtest.TEST
    On target oracle 11gr1 (11.1.0.6)
    Database in archive log mode, with minimum supplemental logging.
    replicat process
    ADD REPLICAT RINI01
    Parameter file for replicat
    REPLICAT RINI01
    USERID ggs_owner, PASSWORD ggs_owner ( added in target database)
    ASSUMTARGETDEFS
    SETENV (NLS_LANG="AMERICAN_AMERICA.WE8MSWIN1252")
    MAP ggtest.TEST , TARGET GGTEST.TEST;
    -- to start the initial load ( mysql side has 4 rows, oracle has no row )
    on source, i ran the command
    ggsci> start extract eini01
    I can see on report, extract has picked 4 rows for insert, but on replicat side no replication done. No error reported in gserr.log and there was a communication between source side of extract with traget side manager and sunsequently repliacat on target was started by manager and stopped normally. but no rows replicated.
    Between oracle-to-oracle there is no problem. But my actual project is to setup from mysql to oracle (one way replication).
    let me know if you need any other info.
    Thanks
    rafey

  • Help on Oracle Report sort option!

    Hi,
    My query in Q_1 of Oracle report is select &a_code ori_code ,&a_desc ori_description from &a ori_lup order by &b. When click on OK button it says
    ORA-00936: missing expression
    select ori_code,ori_description from ori_lup order by ==>
    I am not able to resolve this problem.
    What I am trying to do is I have some maintenance tables which have almost same columns like code, description. I want to define a single report and pass on parameters to this report, so that I can use same report for different tables. If I dont give order by clause it is working fine, but I should also provide sort option based on user selection of sort by code/description.
    Thanks for your help.
    Param Dasana
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Andrew Tselischev ([email protected]):
    Hi
    If I correcly understand you need sorted query, if the parameter 'b' is given, and not sorted query otherwise.
    This may be done, for exeample, by the following way.
    1. Delete the text 'order by' in your query as follows:
    select &a_code ori_code ,&a_desc ori_description from &a ori_lup &b
    2. Create 'AFTER PARAMETER FORM' trigger:
    function AfterPForm return boolean is
    begin
    IF LENGTH( LTRIM( RTRIM( :b ) ) ) > 0 THEN
    :b := 'ORDER BY ' | | :b;
    ELSE
    :b := '';
    END IF;
    return (TRUE);
    end;
    I think it will help for you.
    Andrew<HR></BLOCKQUOTE>
    Thanks Andrew , it worked with your suggestion!!!
    Param.
    null

  • Oracle 10g OLAP option

    Hi all
    Do we support creating a universe against an Oracle 10g OLAP database and how do we do this to report against OLAP data?
    I notice that there isn't an OLAP universe option for this, so I presume that if we can then we do this via OLAP SQL expressions?
    Thank you for your help and kind regards,
    Deam

    Hi,
    You are right, we are supporting Oracle OLAP 10g using SQL.
    In fact we provide an option in Universe Designer where you can automatically create an Oracle view based on an AW (Analytical Workspace) and then generate the universe:<ul><li>Select "Metadata exchange" menu option from "File" menu
    <li>Then select "Oracle OLAP 9i/10G/11g" option
    </ul>You can therefore customize the universe by adding objects, filters, measures, etc.
    You can also add other tables in the scema in order to provide drill-though capabilities.
    Regards,
    Didier

  • Oracle Advanced Seucirty option on Solaris

    Hi,
    I have just installed Oracle 9.2.0.1.0 Enterprise edition on Solaris 10 and from OUI "installed product" report, I see that I have OAS and all the necessary products (i.e. SSL...) installed but when I run netmgr -> Oracle Net Configuration -> Local -> Profile, I do not see an option in the drop down menu with regards to OAS! Have I missed anything or do I need any particular licensing that I am not aware of? If so, how I can get OAS to work?
    Thank you

    Anyone?

  • ORACLE DATABASE REPLICATION -- ANY APPROACH @ THANKS FOR YOUR HELP

    HI ALL,
    I am new to Oracle as a developer.Please help me if you find sometime regarding the following requirement .
    we are replicating the database (TARGET Database 9.2) with the source database(10G) .
    My Idea was to create dblinks for Source DB in Target and use some cursors to populate the data required for destination tables
    (Here i have to update the destination table when the records are updated in source DB and insert the records in Destination DB when no record is found in destination).
    For this requirement , i am planning to use ORACLE MERGE CONCEPTS.As my destination database is 9.2 and merge with 9.2 is not powerful as per my requirement .
    EG :
    1)I do not need WHEN MATCHED CLAUSE SOMETIMES )
    2)ALSO I NEED MERGE IN TO MULTIPLE DESTINATION TABLES
    I came across the following code in one of your posting .If this really works with 10g version .I think i am in the correct path (I can write stored programs in source Database (It is 10g))
    IF NOT THIS ....ANY OTHER APPROACH...
    drop table external_tbl;
    drop table dim1;
    drop table dim2;
    drop table fact_tbl;
    create table external_tbl ( dim1_cd char(1), dim2_cd char(1), qty number );
    insert into external_tbl values ( 'A', 'B', 1 );
    insert into external_tbl values ( 'B', 'C', 2 );
    insert into external_tbl values ( 'A', 'D', 3 );
    create table dim1 ( dim1_cd char(1) primary key, dim1_description varchar2(20) );
    insert into dim1 values ( 'A', 'At the Earth''s Core');
    insert into dim1 values ( 'B', 'Barsoom');
    create table dim2 ( dim2_cd char(1) primary key, dim2_description varchar2(20) );
    insert into dim2 values ( 'B', 'Buck Rogers');
    insert into dim2 values ( 'C', 'Carter, John');
    create table fact_tbl ( dim1_cd char(1) references dim1, dim2_cd char(1) references dim2, qty
    number )
    MERGE ALL
    USING(SELECT dim1_cd, dim2_cd, current_qty
    FROM external_tbl) b
    INTO fact_tbl a
    ON ( b.dim1_cd = a.dim1_cd
    AND b.dim2_cd = a.dim2_cd)
    WHEN NOT MATCHED THEN
    INSERT
    (dim1_cd, dim2_cd, current_qty)
    VALUES
    (b.dim1_cd, b.dim2_cd, b.qty)
    WHEN MATCHED THEN
    UPDATE current_qty
    SET qty = b.qty
    INTO dim1 d1
    ON (b.dim1_cd = d1.dim1_cd)
    WHEN NOT MATCHED THEN -- insert a dummy record
    INSERT INTO dim1 ( dim1_cd, dim1_description )
    VALUES (b.dim1_cd, 'unknown' )
    INTO dim2 d2
    ON (b.dim1_cd = d2.dim2_cd)
    WHEN NOT MATCHED THEN -- insert a dummy record
    INSERT INTO dim2 ( dim2_cd, dim2_description )
    VALUES (b.dim2_cd, 'unknown' )
    and the results to be:
    select * from dim2;
    D DIM2_DESCRIPTION
    B Buck Rogers
    C Carter, John
    D unknown -- added during the MERGE to maintain ref integrity
    select * from fact_tbl;
    D D QTY
    A B 1
    B C 2
    -----THANKS FOR READING MY QUESTION

    Hi ,
    Thanks for the reply....
    How can i convert 9i merge to 10g merge (update set column_name = column_name i did not get this )....
    Also , My requirement is to update only the updated columns in the source table not the entire row ..I tried like this (but not sure whether it is correct or not)
    Compare source to destination and update if not equal
    MERGE
    INTO red_cust tgt
    USING (
    SELECT --red_cust_id_seq .nextval  as CUST_ID ,
    red_cust_nos(i) as CUST_NO,
    red_cust_names(i) as CUST_NAME,
    red_cust_inactive_dates(i) as INACTIVE_DATE ,
    red_cust_insert_users(i) as INSERT_USER ,
    red_cust_insert_dates(i) as INSERT_DATE ,
    red_cust_update_users(i) as UPDATE_USER ,
    red_cust_update_dates(i) as UPDATE_DATE
    FROM master_table
    ) src
    ON ( src.cust_no= tgt.cust_no )
    WHEN NOT MATCHED
    THEN
    INSERT (tgt.CUST_ID ,
    tgt.CUST_NO,
    tgt.CUST_NAME,
    tgt.TAX_EXEMPT_INDIC,
    tgt.INACTIVE_DATE,
    tgt.INSERT_USER,
    tgt.INSERT_DATE
    VALUES (src.cust_id
    src.cust_no ,
    src.CUST_NAME,
    src.TAX_EXEMPT_INDIC,
    src.INACTIVE_DATE,
    src.INSERT_USER,
    src.INSERT_DATE
    WHEN MATCHED
    THEN
    UPDATE
    set
    tgt.cust_name =src.cust_name where tgt.cust_name !=src.cust_name ;
    /*Is this correct approach : what i mean by this is :compare src customer_name and target customer name when they are not equal assign it to the destination source name*/
    I repeated above for the other columns
    tgt.TAX_EXEMPT_INDIC,
    tgt.INACTIVE_DATE,
    tgt.INSERT_USER,
    tgt.INSERT_DATE
    After i tried this , i got the computability error again ..as i am merging from 10g to 9i .........(ERROR: Optional where clause in merge is not available in DESTINATION i.e 9i)
    If my approach above is correct , is there any alternative for where clause in merge in 9i
    I am struck here...Please guide me through the correct path.....
    I appreciate your help

  • Berkeley DB to Oracle server replication

    Hi,
    I need a help.
    Is it possible to make replication from Berkeley DB to Oracle server and if possible, which is the best way to do that replication.
    Thanx,
    Jani Gracnar

    Hi Jani,
    You have to get the data from BDB in flat files with data fields separated by some kind of delimiter for each tupule and then upload the data in Oracle DB using either sqlloader or datapump.
    There is no tool as such that would replicate the data in real time and keep them in sync.
    Thanks,
    Deb Roy

Maybe you are looking for

  • ITunes has stopped working/Quicktime uninstall HKEY error!!

    Ok so I just bought a brand new computer that is Windows Vista 64-bit. I installed iTunes and Quicktime the 64 bit version and everything was great until it stopped working. Data execution prevention will not let iTunes open. Here are the steps Ive t

  • ChaRM: read categorization of change docs based on transport request ID

    Hi There, We have ChaRM implemented with 4 level categorization. I am writing a report to find change docs and read their categorization based on a transport request attached to the change doc. Unfortunately I can't figure out the connection. Could y

  • Advanced Navigation

    Hi there, A. One of the current practice I have when building a template is to call repeating navigation using php includes (or ssi if there's no php support, shame on those host by the way). B. Why do that man? A. Simple. Navigation need to be repea

  • How to link to a computational program? (a "C" or "BASIC"}

    I am writing an engineering book that has a lot of equations and would like to link to a program that does the computations for the reader so that he does not to perform the complex calculations manualy. Any suggestions?

  • Email event generator support secure password exchange with Exchange? [repost w/ corrected subject]

    [repost with corrected subject - not an Email adapter with events, but the Email event generator] IHAC who's trying to use the Email event generator against an Exchange server (as POP3). However, he can't get get the EG to connect successfully, as th