Sun Solaris Command for DBAs

Can any body forward me the every day commands used in Solaris to administer Oracel DB.

This topic (also created by you) was discussed here:
Re: Solaras commads for Oracle

Similar Messages

  • Common Linex & vi  commands for DBAs

    Can some body forward me the everyday linex & vi commands for DBAs ...

    A decent, inexpensive UNIX book is "UNIX Complete" http://www.amazon.com/UNIX-Complete-Peter-Dyson/dp/078212528X
    Cheap, but useful. And half the book is a pretty detailed "dictionary" of commands, many with worked examples. Looks like you can get the book for less than a dollar (plus P+P) on Amazon.

  • Solaris commands for SPARC servers

    Hello fnds,
    Can anybody provide me the document for solaris commands necessary for SPARC based servers.
    BR//
    Vinod

    Hello.
    Have you checked [http://docs.sun.com/]?
    Martin

  • Unix Solar commands for Oracle

    Can any body forward me Unix/solars main commands for Oracle Use.
    Arif

    The main ones are
    sqlplus
    emctl
    lsnrctl
    Use and syntax are in the documentation at http://docs.oracle.com

  • Sun solaris versions for x86

    Hi every body
    What versions of solaris for x86 are produced by sun company as yet?
    Thanks
    behrad

    If Solaris 8 is not avail... is Solaris 10
    equivalent? I mean.. if i develop my Web App for
    WebSphere on Solaris 10.. will is cause a problem
    when i "migrate" it down to Solaris 8?Depends. If it's a Java app that's being run by Websphere, then just make sure that both servers are using the same version of Java and you should be ok.
    If it links against OS libraries, then your probably in trouble.
    Call your local Sun Rep and see if you can buy a license for Sol 8 and then ask them or the client for media.
    alan
    Message was edited by:
    alan.pae

  • Installation,Patching and cloning for 11.5.10 on sun solaris

    Can anyone guide on complete installation , patching and cloning of EBS 11.5.10 on sun solris environment
    Sun solaris command reference would be added advantage.
    Manish

    Hi,
    Can anyone guide on complete installation , patching and cloning of EBS 11.5.10 on sun solris environment
    Installation:
    Installing Oracle Applications: A Guide to Using Rapid Install
    http://download.oracle.com/docs/cd/B25284_01/current/acrobat/r115102ins.pdf
    Note: 316806.1 - Oracle Applications Installation Update Notes, Release 11i (11.5.10.2)
    Note: 294932.1 - Recommendations to Install Oracle Applications 11i
    Patching:
    Maintaining Oracle Applications Documentation Set
    http://download.oracle.com/docs/cd/B25284_01/current/html/docset.html
    Note: 457566.1 - Oracle Applications Patching FAQ for Release 11i
    Note: 130608.1 - adpatch Basics
    Sun solaris command reference would be added advantage.System Administration Commands
    http://docs.sun.com/app/docs/doc/816-5166
    Regards,
    Hussein

  • How to run solaris commands through java code ....

    Hi,
    actually i want to run some solaris commands for zipping some files on Solaris OS...
    any idea how can i do that ?
    thanks

    public class TABLES
    public static void main( String[] args )
                      //database is connected
            try
                   Connection con = null;
                   Statement stmt = null;
                   String strShowTables = "";
                ResultSet resultSet = null;
                   // CBA Statistics period is m_lStatisticsPeriod minutes
                   con = DriverManager.getConnection( g_strRWURI, g_strRWUsername, g_strRWPassword );
                   stmt = con.createStatement();
               ResultSet rs = stmt.executeQuery("use db");
             resultSet = stmt.executeQuery(strShowTables);
        String tableName = "";
             while(resultSet.next()){
    tableName = resultSet.getString(1);
              System.out.println(tableName);
            break;
    String strCmd = "tar cvzf file.tar.gz var/lib/mysql/db/GROUPS.*";
    Process p= Runtime.getRuntime().exec(strCmd);
    System.out.println(strCmd);
        stmt.close();
                rs.close();
                resultSet.close();
                   con.close();
              catch ( Exception e )
                   System.out.println( ": Failed to create database connection (" + e.getMessage() + ")" );
                   e.printStackTrace();
              catch ( Throwable t )
                   System.out.println( " Throwable: " + t.getMessage() );
                   t.printStackTrace();
        }//end of main mehtod
    }//END OF CLASSi hava tried the above code... what the problem is
    when is run that command on shell >    tar cvzf file.tar.gz var/lib/mysql/db/GROUPS.*i works fine but in code even though it didn't give any error but the created "file.tar.gz" is empty...
    Edited by: aftab_ali on Apr 7, 2009 7:15 AM
    Edited by: aftab_ali on Apr 7, 2009 7:17 AM

  • Oracle for Sun Solaris (Intel Platform)

    I want to know that if oracle for sun solaris 8 (intel platform) is available and anyone has installed it. On OTN only oracle for sun solaris (For SPARC ) is available for download.
    if anyone know it for solaris 8 (intel platform) then please tell me where to get it from.
    rohit
    [email protected]
    So that we may better diagnose DOWNLOAD problems, please provide the following information.
    - Server name ORACLE 9I DATABASE
    - Filename
    - Date/Time 5 JULY 2K2
    - Browser + Version IE 6
    - O/S + Version SUN SOLARIS
    - Error Msg

    I didn't see anything on the Sun site, but the disk arrived with my Solaris media. I have installed it on one machine (you need to create the "oracle" user id, the "dba" group, and you must set the tunable parameters for shared memory to install the software and example database.)
    I tried to install a second machine and the Oracle installer terminates half way through without errors. I'm still working that issue.

  • Error with library build for Sun Solaris 10

    I'm getting an error when trying to build the BDB library on Sun Solaris 10, bdb 4.5.20. I download the .tar.gz file, untar it to /usr/local/BerkeleyDB.4.5 directory. Then I cd to /build_unix directory and enter in command: ../dist/configure --enable-cxx  (im using a c++ application for bdb).  Then after this build process, I enter make and I get an error of:
    Libtool: link: 'usr/sfw/lib/gcc/sparc-sun-solaris2.10/3.4.3/../../..//libstdc++.la' is not a valid libtool archive
    Make: *** [libdb_cxx-4.5.la] Error 1
    Why does the link have 2 slashes in it (//libstdc++.la) ? Is this throwing off the build process? How do I fix this?
    Anything I'm doing wrong?

    Thanks that solved the problem. I did this for the 32 bit version and also the 64 bit version. This link has the code for both versions of libstdc++.la (32 bit: usr/sfw/lib/libstdc++.la and also 64 bit: /usr/sfw/lib/64/libstdc++.la):
    http://whocares.de/2006/05/26/solaris-10-fixup-for-libstdcla-is-not-a-valid-libtool-archive/
    thanks again!!!

  • OEM for sun solaris

    Hello,
    I'm working on Database studio (Oracle Enterprise Manager) under window environemt, but I'm wondering if there is GUI OEM for sun solaris like this in windows ?and if there is one what's the name of the file, or how can i install it ?
    Thanks.

    EM is available for Sun Solaris too. If you are using Oracle Server v8.1.6 and earlier, EM has to be installed separately in a different Oracle Home. however, with effect from v 8.1.7, installation of the Oracle Server also installs the base EM.
    Some commands for starting on Solaris.
    1. oemapp console for starting the console
    2. oemapp dbastudio for starting the dbastudio
    3. oemctrl start oms for starting the Management Server
    4. lsnrctl start for the listener
    5. lsnrctl dbsnmp_start for the Agent

  • Disable commands BUG under Sun-Solaris 10 ?

    <p>If you execute a disable commands while another user is justdoing a "force restructure",</p><p>you got no error and the command "display application"shows the command-flag with false.</p><p> </p><p>But every user can still execute a "force restructer",even if the user log in later.</p><p> </p><p>This behaviour occurs under OS=Sun Solaris with essbase Version9.2.0.1,</p><p>under windows with essbase version 9.2 Build 082 it worksfine.</p><p> </p><p>Is this a known BUG ?</p>

    I can't help you solaris tuning, but some things to look at.
    1. Is the Essbase.cfg file the same on both servers? You might have parallel calculation turned on in one and not the other. Caches could also be set differently
    2. Are the database caches set the same? This could impact performance as well
    3. Are you doing an apples to apples comparison? Is one database loaded and recalculated many times while the other is not (or restructured or reloaded)

  • Install package for Firefox 30.0 on Sun Solaris 10 SPARC?

    Looking for the latest Sun Solaris 10 SPARC package for Firefox 30. It appears it either has not been posted yet or development of Firefox on Sun Solaris has halted.
    http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/latest/contrib/
    http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/latest/contrib-localized/
    http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/30.0/contrib/
    http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/30.0/contrib-localized/
    Package name should be similar to "firefox-30.0.en-US.solaris-10-fcs-sparc-pkg.bz2".
    Thank you!

    Mozilla does not tar packages for all linux platforms, but some third party repositories do. I did find: [http://unixpackages.com/packages/mozilla]
    [http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/30.0/linux-i686/en-US/] AND [http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/30.0/linux-x86_64/en-US/]
    How to build Firefox [https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Build_Instructions/Linux_Prerequisites]

  • 64 Bit XML libraries for Sun Solaris

    Will the libxml8.a and libxmlc8.a libraries be included in the 8.1.7 (64) release for Sun Solaris?

    Yes, all releases of Oracle 8.1.7 and Oracle 9i will contain the XDK (although you won't need the libxmlc8.a).

  • Can't download Oracle 9i Database Server for SUN Solaris 32 bit platform

    I was not able to download Oracle 9.2.0 DB Server for Sun Solaris 32 bit platform from OTN site this morning. Could someone please take a look at it?
    Thanks,
    Wen Davis

    At this time, Oracle is offering only the 64- bit and we do not
    have additional information if in the future 32-bit will be
    offered.
    Best Regards,
    OTN Team

  • Oracle 11g R2 for Sun Solaris???

    When will be release the version for Sun Solaris?
    Is there any way to check the release date for each Oracle version? (e.g. 10.2, 11.1, etc)
    Thanks,
    Shum

    ashum wrote:
    Well if you check at this link http://www.oracle.com/technology/software/products/database/index.html
    You will see that 11.1.07 is for Windows ServerActually, you might note that it is for Windows Server *2008*. OS qualifiers are fairly important. Sentences may sort of trail off to noth
    What you download from the freely available site,and what is the current version with patches applied is often a different thing.
    The freely available 'for learning and prototyping' downloads (from the site you mention) are NOT updated to a new patch level. (If necessary, they may be revised to fix bugs that stop them for being installed, but they keep the same point level.)
    If a version of the OS is released after the s/w has been made available, and there are problems installing or using that combination, Oracle MAY decide to fix, apply patch set and and make available the s/w for that specific OS.
    And if you are waiting for 11.2 because you don't have Support and can't get 11.1.0.7 patch, then I express concern for your management's approach. Missing CPUs and other patches is not a good idea for production.

Maybe you are looking for

  • What are solutions for a way-too-big database?

    Hi guys! I'm a software developer and not very good in database designing. One day, I was asked something like this : "For example, there is a company with a web application. One day, the database for that application is way too big, caused performan

  • MS Access form bound to an Oracle OraDynaset?

    Hello, I need to write an MSAccess 2007 application as a front-end to an Oracle 11g database. Is it possible to bind a MS Access form to an Oracle OraDynaset? Regards, M.R. Edited by: user7047382 on Sep 22, 2010 4:46 PM

  • Which WM should I choose? (maybe Awesome?)

    Hi all, is a bit of time that I realized that Windows is not for me, but just last week I started to try to replace him. I installed Arch Linux on VirtualBox,and I tried Gnome 3 (which does not please me at all, unless I put it in fallback mode...),

  • When trying to sync with my computer it downloads my roomates music

    I got a new shuffle and when I signed in itunes with my name and password it downloaded my roomates music and i can't even find my library. Did I lose all my music??

  • Conditional Actions Script for PS CS2

    This script from Sivaratnam Gunaratnam will perform actions on Photoshop files and can change depending on certain definable conditions encountered in each file. From his Blog entry: "This is a tool I scripted for myself that I would like to share wi