10.1.3.3 release on Solaris x86

Hi guy's,
Anyone know when the 6148874 patchset (10.1.3.3) will be available for Solaris (x86)?
Thanks.

Not sure if you already figured this out, my reply isn't exactly timely.
Had the same issue with Windows XP, we resolved by turning off cell animations for Excel. Can do by adding HKCU - Software - Microsoft - Office - Version # - Excel - Options, add DWORD Options95=1
This fixed the slow scrolling issue for us, as well as an issue where sessions would get disconnected back to the VDI log in screen when trying to scroll around or delete big chunks of rows

Similar Messages

  • Which 10g release supports Solaris x86 version 10?

    Hi,
    I downloaded Oracle 10.1.0.3 for Solaris x86. When I installed it, I got error, saying I can only install this version on Solaris 9 x86. Do you have any idea which Oracle 10g version supports Solaris x86 version 10?
    Thanks
    L

    Hi,
    If we believe metalink, Oracle 10gR1 is already certified for Solaris x86
    Solaris Operating System x86 Version 10
    Oracle Database - Enterprise Edition Version 10g
    Status: Certified
    Certification Note:
    Install Information:
    o 1. Execute runInstaller with the -ignoreSysPrereqs option.
    o 2. Select 'Do not create a starter database' when installing Oracle 10g.
    o 3. During installation, the warning message 'SUNWsprox package not installed' can be ignored. Press Continue to resume the installation.
    o 4. Download and install patch 4186426 from metalink.oracle.com after installing Oracle 10g software.
    o 5. If you have an End User Solaris 10 distribution, install the SUNWuiu8 package prior to installing the 10g client.
    Have you run installer like recommended in point 1 ?
    For 10gR2, you need to wait december for certification.
    Nicolas.

  • JavaFX for Solaris x86 and/or OpenSolaris

    Will there be a release for Solaris x86 and/or OpenSolaris. WHats up DoC!

    According to Metalink Doc ID 742060.1, modified 28-Sep-2009, it appears that 4th Quarter Calendar Year 2009 will see a Solaris x86-64 release of 11.2.0.1
    That's good news!
    Chris

  • Solaris x86 with Oracle RAC 10g Enterprise Edition Release 10.2.0.3.0

    Hello,
    Maybe you can help me (new on RMAN backup) in doing this.
    I have configured a single Oracle 10g database to have backup with RMAN with following steps:
    1. $ mkdir $ORACLE_BASE/rman_scripts
    2. $ mkdir $ORACLE_BASE/logs
    3. $ mkdir $ORACLE_BASE/tracking
    4. $ mkdir $ORACLE_BASE/c_backup
    5. $ sqlplus sys/<password> as sysdba
    6. SQL> alter system set db_recovery_file_dest_size = 50G scope=both;
    7. SQL> alter system set db_recovery_file_dest='${ ORACLE_BASE}/flash_recovery_ area' scope=both;
    8. SQL> alter system set log_archive_dest_10='location= use_db_recovery_file_dest';
    9. SQL> shutdown immediate
    10. SQL> startup nomount
    11. SQL> alter database archivelog;
    12. SQL> alter database open;
    13. SQL> alter database enable block change tracking using file '${ORACLE_BASE}/tracking/rman_ change_track.f';
    14. $ rman target /
    15. RMAN> CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK
    TO '/var/opt/oracle/flash_ recovery_area/ORCL/c_backup/% F';
    16. RMAN> CONFIGURE CONTROLFILE AUTOBACKUP ON;
    17. RMAN> CONFIGURE BACKUP OPTIMIZATION ON;
    18. RMAN> CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS;
    19. RMAN> exit
    I need to configure incremental backup with RMAN on a two node Solaris x86 with Oracle RAC 10g Enterprise Edition Release 10.2.0.3.0 installation.
    We also use ASM to store database files, and have Oracle software installed on separate file systems (two Oracle roots for Node1 and Node2).
    I have following questions:
    1) where to put Flash Recovery Area (FRA)?
    I saw recommendations to put FRA on the ASM, is this the best way to do it?
    2) Can I put FRA on another file system (not on the ASM) which is available only from Node1? This way I can save space on the ASM.
    3) Is it possible/recommended to run RMAN from Node1 only?
    Below is the script used to run RMAN on the normal Oracle database (without RAC) which I need to change :
    =============================================================================================
    2.0 Oracle backup script: /opt/app/oracle/rman_scripts/backup.sh
    Use this for daily backups, possiblly as a cron job.
    Once a week run this: /opt/app/oracle/rman_scripts/backup.sh FULL
    All other days of the week: /opt/app/oracle/rman_scripts/backup.sh INCREMENTAL
    Note: You may have to change ORACLE_SID, ORACLE_BASE below to match your database.
    =============================================================================================
    #!/usr/bin/ksh
    ORACLE_SID=orcl
    ORACLE_BASE=/opt/app/oracle
    ORACLE_HOME=${ORACLE_BASE}/product/10.2.0/db_1
    PATH=${ORACLE_HOME}/bin:/usr/bin
    LOGDIR=${ORACLE_BASE}/logs
    LOGFILE=${LOGDIR}/rman.log
    if [[ $# < 1 ]]
    then
    echo "usage: backup.sh FULL|INCREMENTAL"
    exit;
    fi
    BACKUPTYPE=${1}
    full='FULL'
    incremental='INCREMENTAL'
    if [[ $BACKUPTYPE == $full ]]
    then
    $ORACLE_HOME/bin/rman target / nocatalog log ${LOGFILE} append << eof
    run {
    backup database;
    SQL 'alter system archive log current';
    backup archivelog all;
    delete noprompt obsolete;
    exit;
    eof
    echo ''
    fi
    if [[ $BACKUPTYPE == $incremental ]]
    then
    $ORACLE_HOME/bin/rman target / nocatalog log ${LOGFILE} append << eof
    run {
    backup database;
    backup incremental level 1 database;
    SQL 'alter system archive log current';
    backup archivelog all;
    delete noprompt obsolete;
    exit;
    eof
    echo ''
    fi

    Hi [email protected],
    Q1) where to put Flash Recovery Area (FRA)?
    A1) With RAC: on the shared storage
    I saw recommendations to put FRA on the ASM, is this the best way to do it?
    If you want your backups to be available for both nodes you have to use shared storage or tape using an mml library.
    So if you want to use the FRA for rman backups and the database is on ASM just make ASM the standard for the FRA as well.
    Q2) Can I put FRA on another file system (not on the ASM) which is available only from Node1? This way I can save space on the ASM.
    A2) Than you cannot recover in case Node1 is down. Best would be to send your storage admin to a training course so he can manage the clustered raw devices needed for ASM.
    Q3) Is it possible/recommended to run RMAN from Node1 only?
    A3) No see A2.
    Regards,
    Tycho

  • Oracle Database 10g Release 1(10.1.0.3) for Solaris x86

    I've downloaded this version of oracle to be installed on solaris x86 for version 5.10 but unfortunatly the following error has occurred:
    $ ./runInstaller
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be 5.6, 5.7, 5.8 or 5.9. Actual 5.10
    Failed <<<<
    Exiting Oracle Universal Installer, log for this session can be found at /tmp/OraInstall2006-02-15_11-16-32AM/installActions2006-02-15_11-16-32AM.log
    so it is failed to install ...
    please advise,,
    thx alot...

    from metalink:
    General Notes For Oracle Database - Enterprise Edition On
    Solaris Operating System x86:
    Sun Solaris OS 10 Information:
    o Oracle will announce certification of the following database products on the Sun Solaris 10 operating system shortly after it is announced as being generally available by Sun. This is planned for March 2005.
    + Oracle Database 9iR2 (with 9.2.0.4 Patchset) for Sun Solaris SPARC32
    + Oracle Database 9iR2 (with 9.2.0.5 Patchset) for Sun Solaris SPARC64
    + Oracle Database 10gR1 (with 10.1.0.3 Patchset) for Sun Solaris SPARC64
    + Oracle Database 10gR1 (includes 10.1.0.3 Patchset) for Sun Solaris x86
    o When Oracle Database 10gR2 releases on Sun platforms later in 2005, the following releases will be certified on the Sun Solaris 10 operating system:
    + 10gR2 Database for Sun Solaris SPARC64
    + 10gR2 Database for Sun Solaris AMD64
    + 10gR2 Database for Sun Solaris x86
    pasquale rago

  • OEM Grid Control Release (not just agent) for Solaris x86?

    I see management agents that can be downloaded off of OTN, but is there an official release of Grid Control for Solaris on x86?
    "Oracle Enterprise Manager 10g Grid Control *Release 5* (10.2.0.5) for Solaris Operating System *(SPARC)*"
    "Oracle Enterprise Manager 10g Grid Control *Management Agent Release 1* (10.1.0.3) for Solaris *x86*"

    Please throw me some more meat on that bone. I'm still waiting for my Metalink access. (i.e., can you cut and paste the note text onto this forum message.)Sharing(Cut&Paste) Metalink Notes is not legal.
    Oracle has no plans for 10.2.0.4 and for 10.2.0.5 it's expected by Q3 on x86(32&64)

  • From 7.3 on NT to 8 on Solaris x86?

    Has Oracle ported Oracle8 for Solaris x86?

    Hi,
    usually I expect people to do a little research and I do not give everything chewed.
    Point 4:
    go to the
    <b>Oracle9i Database Migration Release 2 (9.2)</b>
    go to the chapter 3
    <b>Upgrading a Database to the New Oracle9i Release</b>
    go to the point:
    <b>Upgrade the Database Manually</b>
    Exactly from here:
    http://download.oracle.com/docs/cd/B10501_01/server.920/a96530/upgrade.htm#1009200
    Keep in mind
    1) that the <i>EXACT </i>procedure you are following it is not indicated in this manual
    2) you have to think a little ( do you have all the windows services created on the destination system? if not, you have to create them ... )
    3) this procedure is not supported by SAP. It is a valid option but not supported by them. You have to practice until you get all the points correctly

  • Help with evaluation for Solaris x86

    Hello,
    I would like to evaluate Oracle Identity Manager and Access Manager products at the latest version possible -- the host system(s) are Solaris x86 (SunOS .5.10) Unfortunately, I am having a bit of trouble compiling the list of packages/versions to achieve this for this platform. For instance, on the downloads page it appears that OIM is not available for Solaris x86, not even in older versions(?)
    Thank you in advance,
    Scott

    Hi Scott,
    I'm pretty sure that x86 Solaris is not yet certified to run the Identity Management suite. I've been involved in an evaluation process and we ran it all on RedHat Enterprise Server Release 4 Update 5, without too many problems.
    cheers,
    James

  • R12 test instance in solaris X86 OS

    Hi All,
    One of our customer is planning to upgrade their EBS 11i to r12 in solairs. Is it possible to keep the R12 test instance in solaris x86 os?
    Regards,
    Ram

    One of our customer is planning to upgrade their EBS 11i to r12 in solairs. Is it possible to keep the R12 test instance in solaris x86 os?No, as this OS is not supported for Oracle EBS.
    You can use Oracle Solaris on SPARC (64-bit) or Linux OS.
    Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Oracle Solaris on SPARC (64-bit) [ID 761568.1]
    Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86-64 [ID 761566.1]
    Thanks,
    Hussein

  • Problem Oracle10G Installation in Solaris-x86

    Hai,
    I am facing problem when installing Oracle10g on solaris machine.
    I created user and group for oracle and also changed some kernel properties.after changing all requirements i am trying to run runInstaller...but it gave exception like this ...
    Exception:
    Starting Oracle Universal Installation...
    Checking Installation requirements...
    Checking Operating System version :
    must be 5.6,5.7,5.8,5.9 Actual 5.10
    failed <<<<
    exsting oracle universal installer.log for this session can be found at /tmp/orainstaller/datetime....
    I am using ---
    Oracle version : Oracle Database 10g Release 1(10.1.0.3) for Solaris x86
    Solaris Version : Solaris 5.10
    can any one help me out from this problem....
    Thanks in advance ....
    -Lakesh

    Oracle 10G release 1 only support up to Solaris 9.
    You probably need to install 10G release 2. The second release of major Oracle version is always more stable anyway.
    http://download-west.oracle.com/docs/cd/B19306_01/install.102/b15697/pre_install.htm#sthref110

  • Agent for Solaris x86

    Does anyone have any info about the availability of an agent(preferably 10.2.0.5) for solaris x86 platforms? I was able to find a document referencing a 10.2.0.2 version but nothing else.

    Hi,
    check note 793512.1 - Release Schedule of Current Grid Control Patch Sets
    regards,

  • Oracle InstantClient for Solaris x86

    Hi,
    Do you Oracle oracles foresee Instant Client upgrades for the Solaris x86 platform? It seems to be stuck at 10.1.0.3.
    I ask because we just picked up four Oracle CPU licenses, installed RAC, and hoped to put all of our apps on those nifty AMD Opteron-based boxes that Sun is manufacturing these days.
    Thanks!

    Oracle never released a 9i port for Solaris on x86; There is however full
    support (including a 64 bit version) of 10G

  • F90 bug on solaris x86

    Hello,
    I have a short code to show a curious bug on solaris x86 when i compil it with f90 -O3.
    Where can i send it to show this bug ?
    Thanks

    The bug ID for this problem is 6413443. It has been fixed in both the development release and the patch release. Fix should be available in the upcoming patches for Studio 11 and in the next release of Sun Studio Express - SSX3.
    Best regards,
    Boris

  • Java RTS 2.1 Beta free evaluation release for Solaris and Linux available

    Hi:
    I would like to notify this forum that a free evaluation release of
    Java Real-Time System (Java RTS) 2.1 Beta is now available for downloading
    at our public web site.
    Supported platforms are Solaris/SPARC, Solaris/x86, and Linux/x86 with
    real-time POSIX APIs. The specific Linux distributions which this release
    has been tested on are: SUSE Linux Enterprise Real Time 10 (released)
    and Red Hat Enterprise MRG 1.0 (beta). As for the Solaris versions,
    both Solaris 10 Update 3 and Update 4 are supported.
    The URL for the web page where to start in order to be able to get to
    the download link is:
    http://java.sun.com/javase/technologies/realtime/rts/
    The download link will be presented to you after you fill out a quick
    survey and agree with a click-through, 90-days e-license.
    The latest version of the Java RTS Beta technical documentation
    bundle included with the product is being separately maintained at
    our public website and can be accessed starting from here:
    http://java.sun.com/javase/technologies/realtime/reference/rts_productdoc.html
    Thanks,
    -Carlos
    Carlos B. Lucasius
    Java SE Embedded and Real-Time Engineering
    Sun Microsystems, Inc.
    http://java.sun.com/javase/technologies/embedded/index.jsp
    http://java.sun.com/javase/technologies/realtime.jsp
    http://java.sun.com/javase/technologies/realtime/faq.jsp
    http://developers.sun.com/learning/javaoneonline/j1sessn.jsp?sessn=TS-1331&yr=2007&track=5
    http://developers.sun.com/learning/javaoneonline/j1sessn.jsp?sessn=TS-2901&yr=2007&track=5
    http://developers.sun.com/learning/javaoneonline/j1lab.jsp?lab=LAB-7250&yr=2007&track=4
    http://www.sun.com/training/catalog/courses/DTJ-4103.xml
    http://www.youtube.com/v/xH1yUXd9krU
    http://blogs.sun.com/jtc/
    http://blogs.sun.com/delsart
    http://blogs.sun.com/bollellaRT

    Hello,
    Just a quick question: can we have an official position from Sun regarding support of earlier releases of Solaris with Java RTS 2.1? Our customer is currently running Solaris 10 Update 3 with current Recommended patches, and the 2.1 beta cyclic driver supported this version of Solaris. However with the official release version of 2.1, support for U3 disappeared (only U4 and U5 are now supported). Aside from "rubber stamping" the Solaris build via /etc/release, is there a technical reason why U3 is no longer supported? As long as our kernel is up to date, can we safely use 2.1? Or is it just a case of being unable to officially support and test so many releases of Solaris?
    Is this a general rule-of-thumb we can expect in future: only supporting the last 2 updates of Solaris 10?
    Your advice is appreciated.
    Thanks,
    Dave.

  • SP3 for Solaris x86?

    Hi:
    I noticed that SP3 for Solaris X86 is not present. Is BEA dropping support for Solaris x86?
    Thanks,
    Keith

    You can try the newly released Solaris 10 10/09 VDI image from:
    https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_SMI-Site/en_US/-/USD/ViewProductDetail-Start?ProductRef=virtualbox-s10U8-x86-G-F@CDS-CDS_SMI
    This is a complete ready-to-run image that won't require installing. It might help debug issues such as keyboard and mouse, separating it from install issues.
    -- Alan

Maybe you are looking for

  • Remove Quicktime from being the default player? I just want to download

    Here's the deal, I'm trying download a file from this website "yousendit" and whenever I attempt to just download the file, the Quicktime 7 media player begins playing the file right away. I don't want to watch the file, I want to download the file.

  • Need 9.2.0.1.0 for solaris

    Hi All From where could I get this software downloaded for Sun solaris SPARC kb

  • Error message when setting up Road Runner Email on my new Macbook Pro

    I get the following error message when setting up my RR account.  Logging in to the neo.rr.com POP server "pop-server.neo.rr.com" failed. Make sure the user name and password you entered are correct, then click Continue. If the information isn't corr

  • Wrong Doc Date

    Hi All, I've passed an intercompany entry with document date as 24.11.2011, whereas it should have been 24.11.2010. I am not able to clear it since the Bline date is in the future. Is there anyway to clear this document? The posting period is open on

  • Migrating from SunFire v1280 to T4 servers

    Hi all, I will be soon tasked with the migration from a SunFire v1280 server to a new T4, not sure if it will be T4-1 or T4-2, server. The v1280 is running Solaris 10 with a number of applications that the client wants to preserve and keep running, t